diff --git a/pages/handlecase/component/list.vue b/pages/handlecase/component/list.vue index 7e658cf..c446a38 100644 --- a/pages/handlecase/component/list.vue +++ b/pages/handlecase/component/list.vue @@ -10,7 +10,7 @@ - 申请人姓名: + 申请人: {{defalutVal.applicantName}} @@ -18,7 +18,7 @@ - 申请人姓名: + 申请人: {{defalutVal.applicationName}} @@ -26,7 +26,7 @@ - 被申请人姓名: + 被申请人: {{defalutVal.respondentName}} diff --git a/pages/handlecase/component/payList.vue b/pages/handlecase/component/payList.vue index 1b0b1a4..892358d 100644 --- a/pages/handlecase/component/payList.vue +++ b/pages/handlecase/component/payList.vue @@ -131,6 +131,7 @@ }, /**文件上传*/ select(e) { + this.submitForm.payOrderList = []; this.tempFilePaths = e.tempFilePaths; // loading uni.showLoading({ @@ -212,6 +213,14 @@ }, /**确认缴费*/ submitPay() { + if (this.submitForm.payOrderList.length < 1) { + uni.showToast({ + title: '请上传缴费凭证', + icon: 'none', + duration: 1000 + }); + return + } this.submitForm.caseId = this.formData.id; this.submitForm.caseFlowId = this.formData.caseFlowId; this.confirmPaymentFn(this.submitForm); diff --git a/pages/im/component/imList.vue b/pages/im/component/imList.vue index e0cbe14..b52c102 100644 --- a/pages/im/component/imList.vue +++ b/pages/im/component/imList.vue @@ -1,6 +1,6 @@