diff --git a/src/api/login.js b/src/api/login.js index f810acb..8c985d8 100644 --- a/src/api/login.js +++ b/src/api/login.js @@ -75,4 +75,12 @@ export function wxregister(data) { method: 'post', data: data }) +} +// 检测用户名是否已经存在 +export function verifyUserName(data) { + return request({ + url: '/weChatUser/verifyUserName', + method: 'get', + params:data + }) } \ No newline at end of file diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index 4db9b09..bd90780 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -61,32 +61,19 @@ - 修改 查看详情 - - 查看流程 案件日志 - - 查看缴费单 - - - 上传证据 归档详情 - - - - - {{ item.nodeName }} + @click="caseClick(scope.row,item.id)" v-if="item.id == scope.row.caseFlowId && checkPermi([item.buttonAuthFlag]) && scope.row.signButtonFlag != 1">{{ item.nodeName }} diff --git a/src/views/caseManagement/components/mediation.vue b/src/views/caseManagement/components/mediation.vue index ace76c4..15bd27e 100644 --- a/src/views/caseManagement/components/mediation.vue +++ b/src/views/caseManagement/components/mediation.vue @@ -118,9 +118,10 @@ 取 消 - - 提 交 + + 提 交 @@ -169,6 +170,7 @@ export default { fileList: [], attachList: [], isSecretaryRole: true, + loadingSubmit: false }; }, watch: { @@ -293,16 +295,19 @@ export default { this.$modal.msgSuccess("成功"); this.$emit("cancelMediation"); this.$emit("getList", this.queryParams); + this.loadingSubmit = false; }); }, cancel() { this.$emit("cancelMediation"); }, - - submitMediation: _.debounce(function() { + + submitMediation() { if (this.fileList.length < 1 && !this.mediationType && this.mediationData.mediationMethod == "2") { this.$modal.msgError("请上传调解书"); return + } else { + this.loadingSubmit = true; } let mediationVal = {} if (this.codes == 200) { @@ -321,7 +326,7 @@ export default { } } this.mediationFn(mediationVal); - },5000), + }, resultsMediation() { } diff --git a/src/views/caseManagement/components/payDialog.vue b/src/views/caseManagement/components/payDialog.vue index c90842e..3c24e02 100644 --- a/src/views/caseManagement/components/payDialog.vue +++ b/src/views/caseManagement/components/payDialog.vue @@ -57,8 +57,8 @@ {{ payMain }} @@ -88,7 +88,8 @@ export default { payType:1, payOrderList:[], caseId:null - } + }, + payFlagSubmit:true }; }, methods: { @@ -112,6 +113,7 @@ export default { annexId: res.annexId, annexName:res.annexName }); + this.payFlagSubmit = false; }, submitUpload() { if (this.fileList.length < 1) { diff --git a/src/views/caseManagement/components/respondentPay.vue b/src/views/caseManagement/components/respondentPay.vue index 69a55b9..0768690 100644 --- a/src/views/caseManagement/components/respondentPay.vue +++ b/src/views/caseManagement/components/respondentPay.vue @@ -57,8 +57,8 @@ {{ payMain }} @@ -88,7 +88,8 @@ payType:1, payOrderList:[], caseId:null - } + }, + payFlagSubmit:true }; }, methods: { @@ -112,6 +113,7 @@ annexId: res.annexId, annexName:res.annexName }); + this.payFlagSubmit = false; }, submitUpload() { if (this.fileList.length < 1) { diff --git a/src/views/register.vue b/src/views/register.vue index 92be869..82b565e 100644 --- a/src/views/register.vue +++ b/src/views/register.vue @@ -1,9 +1,9 @@ - 若依后台管理系统 + 智慧调解系统注册 - + @@ -77,14 +77,14 @@ -