Parcourir la source

测试修改缴费确认

gyj il y a 2 ans
Parent
révision
d6e21e33b5

+ 3
- 1
src/views/caseManagement/caseList.vue Voir le fichier

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

+ 2
- 2
src/views/caseManagement/components/mediation.vue Voir le fichier

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

+ 3
- 4
src/views/caseManagement/components/paymentdetailsDialog.vue Voir le fichier

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