Bläddra i källkod

测试修改缴费确认

gyj 2 år sedan
förälder
incheckning
d6e21e33b5

+ 3
- 1
src/views/caseManagement/caseList.vue Visa fil

@@ -110,7 +110,7 @@
110 110
             :queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow"></payDialog>
111 111
         <!-- 缴费确认查看详情 -->
112 112
         <paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
113
-            :detailform="detailform" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList">
113
+            :detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" @getList="getList">
114 114
         </paymentdetailsDialog>
115 115
         <!-- 案件受理 -->
116 116
         <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
@@ -272,8 +272,10 @@ export default {
272 272
                 // 签名
273 273
             }else if(type == 12){
274 274
                 // 用印申请
275
+                this.consultantApplica(val)
275 276
             }else if(type == 13){
276 277
                 // 用印
278
+                this.departmentApplica(val)
277 279
             }else if(type == 14){
278 280
                 // 归档
279 281
                 this.caseFiling(val);

+ 2
- 2
src/views/caseManagement/components/mediation.vue Visa fil

@@ -86,7 +86,7 @@
86 86
       <el-button
87 87
         @click="openArbitrationresults"
88 88
         type="primary"
89
-        v-if="this.recordArr.length <= 0"
89
+        v-if="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'"
90 90
       >确认会议结果</el-button>
91 91
       <div slot="footer" class="dialog-footer">
92 92
         <el-button @click="cancel" class="endbutton1">
@@ -94,7 +94,7 @@
94 94
         </el-button>
95 95
         <el-button
96 96
           @click="submitMediation"
97
-          :disabled="this.recordArr.length <= 0"
97
+          :disabled="this.recordArr.length <= 0 && mediationData.mediationMethod == '1'"
98 98
           class="endbutton1"
99 99
         >
100 100
           <span>提 交</span>

+ 3
- 4
src/views/caseManagement/components/paymentdetailsDialog.vue Visa fil

@@ -31,7 +31,7 @@
31 31
 <script>
32 32
 import {confirmPaid} from '@/api/caseManagement/caseManagement.js'
33 33
 export default {
34
-  props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma"],
34
+  props: ["openDialog", "title", "flag", "detailform", "getList","paymentConfirma","queryParams"],
35 35
   data() {
36 36
     return {
37 37
       form: {},
@@ -66,11 +66,10 @@ export default {
66 66
           message: "确认成功",
67 67
           type: "success",
68 68
         });
69
-        if (res.code == 200) {
70
-          this.getList();
71
-        }
69
+       
72 70
       });
73 71
       this.cancel();
72
+      this.$emit("getList", this.queryParams);
74 73
     },
75 74
     cancel() {
76 75
       this.$emit("cancelpaymentdetails");