hanchaobo 2 anos atrás
pai
commit
b577f650f5
2 arquivos alterados com 113 adições e 105 exclusões
  1. 3
    7
      package.json
  2. 110
    98
      src/views/caseManagement/caseList.vue

+ 3
- 7
package.json Ver arquivo

1
 {
1
 {
2
   "name": "ruoyi",
2
   "name": "ruoyi",
3
   "version": "3.8.6",
3
   "version": "3.8.6",
4
-  "description": "智慧仲裁管理系统",
5
-  "author": "智慧仲裁",
4
+  "description": "调解系统",
5
+  "author": "若依",
6
   "license": "MIT",
6
   "license": "MIT",
7
   "scripts": {
7
   "scripts": {
8
     "dev": "vue-cli-service serve",
8
     "dev": "vue-cli-service serve",
48
     "js-beautify": "1.13.0",
48
     "js-beautify": "1.13.0",
49
     "js-cookie": "3.0.1",
49
     "js-cookie": "3.0.1",
50
     "jsencrypt": "3.0.0-rc.1",
50
     "jsencrypt": "3.0.0-rc.1",
51
-    "lodash": "^4.17.21",
52
-    "moment": "^2.30.1",
53
     "nprogress": "0.2.0",
51
     "nprogress": "0.2.0",
54
-    "qrcodejs2": "0.0.2",
55
     "quill": "1.3.7",
52
     "quill": "1.3.7",
56
     "screenfull": "5.0.2",
53
     "screenfull": "5.0.2",
57
     "sortablejs": "1.10.2",
54
     "sortablejs": "1.10.2",
58
     "vue": "2.6.12",
55
     "vue": "2.6.12",
59
     "vue-count-to": "1.0.13",
56
     "vue-count-to": "1.0.13",
60
     "vue-cropper": "0.5.5",
57
     "vue-cropper": "0.5.5",
61
-    "vue-esign": "^1.1.4",
62
     "vue-meta": "2.4.0",
58
     "vue-meta": "2.4.0",
63
     "vue-router": "3.4.9",
59
     "vue-router": "3.4.9",
64
     "vuedraggable": "2.24.3",
60
     "vuedraggable": "2.24.3",
91
     "> 1%",
87
     "> 1%",
92
     "last 2 versions"
88
     "last 2 versions"
93
   ]
89
   ]
94
-}
90
+}

+ 110
- 98
src/views/caseManagement/caseList.vue Ver arquivo

3
         <el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
3
         <el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
4
             <el-form-item label="案件状态" prop="caseFlowId">
4
             <el-form-item label="案件状态" prop="caseFlowId">
5
                 <el-select v-model="queryParams.caseFlowId" placeholder="请选择" clearable>
5
                 <el-select v-model="queryParams.caseFlowId" placeholder="请选择" clearable>
6
-                    <el-option v-for="dict in caseStausArr" :key="dict.id" :label="dict.caseStatusName"
7
-                        :value="dict.id" @keyup.enter.native="handleQuery"></el-option>
6
+                    <el-option v-for="dict in caseStausArr" :key="dict.id" :label="dict.caseStatusName" :value="dict.id"
7
+                        @keyup.enter.native="handleQuery"></el-option>
8
                 </el-select>
8
                 </el-select>
9
             </el-form-item>
9
             </el-form-item>
10
             <!-- <el-form-item label="申请机构" prop="applicationOrganId">
10
             <!-- <el-form-item label="申请机构" prop="applicationOrganId">
33
         </el-form>
33
         </el-form>
34
         <el-row :gutter="10" class="mb8">
34
         <el-row :gutter="10" class="mb8">
35
             <el-col :span="1.5">
35
             <el-col :span="1.5">
36
-                <el-button type="primary" plain icon="el-icon-plus"  v-hasPermi="['caseManagement:list:add']" size="mini" @click="addCase()">新增案件</el-button>
36
+                <el-button type="primary" plain icon="el-icon-plus" v-hasPermi="['caseManagement:list:add']" size="mini"
37
+                    @click="addCase()">新增案件</el-button>
37
             </el-col>
38
             </el-col>
38
             <!-- TODO 后期可能加上-->
39
             <!-- TODO 后期可能加上-->
39
             <!-- <el-col :span="1.5">
40
             <!-- <el-col :span="1.5">
61
             <el-table-column label="创建时间" align="center" prop="createTime" :show-overflow-tooltip="true" />
62
             <el-table-column label="创建时间" align="center" prop="createTime" :show-overflow-tooltip="true" />
62
             <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
63
             <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
63
                 <template slot-scope="scope">
64
                 <template slot-scope="scope">
64
-                    <el-button size="mini" @click="eidtNodeprocess(scope.row)" type="text"
65
-                        icon="el-icon-edit" v-hasPermi="['caseManagement:list:edit']" v-if="scope.row.caseFlowId <= 1">修改</el-button>
65
+                    <el-button size="mini" @click="eidtNodeprocess(scope.row)" type="text" icon="el-icon-edit"
66
+                        v-hasPermi="['caseManagement:list:edit']" v-if="scope.row.caseFlowId <= 1">修改</el-button>
66
                     <el-button size="mini" @click="checkDetail(scope.row)" type="text" icon="el-icon-view">查看详情</el-button>
67
                     <el-button size="mini" @click="checkDetail(scope.row)" type="text" icon="el-icon-view">查看详情</el-button>
67
                     <el-button size="mini" @click="caseFlow(scope.row)" type="text" icon="el-icon-zoom-in">查看流程</el-button>
68
                     <el-button size="mini" @click="caseFlow(scope.row)" type="text" icon="el-icon-zoom-in">查看流程</el-button>
68
                     <el-button size="mini" @click="caseLog(scope.row)" type="text"
69
                     <el-button size="mini" @click="caseLog(scope.row)" type="text"
69
                         icon="el-icon-edit-outline">案件日志</el-button>
70
                         icon="el-icon-edit-outline">案件日志</el-button>
70
                     <el-button size="mini" @click="viewpaymentformRow(scope.row)" type="text"
71
                     <el-button size="mini" @click="viewpaymentformRow(scope.row)" type="text"
71
                         icon="el-icon-edit">查看缴费单</el-button>
72
                         icon="el-icon-edit">查看缴费单</el-button>
73
+                    <el-button size="mini" type="text" icon="el-icon-edit" @click="evidenceUpload(scope.row)"
74
+                        v-hasPermi="['caseManagement:list:evidenceEdit']" v-if="scope.row.caseFlowId <= 9">上传证据</el-button>
72
                     <el-button size="mini" type="text" icon="el-icon-edit"
75
                     <el-button size="mini" type="text" icon="el-icon-edit"
73
-                        @click="evidenceUpload(scope.row)" v-hasPermi="['caseManagement:list:evidenceEdit']" v-if="scope.row.caseFlowId <= 9">上传证据</el-button>
74
-                    <el-button size="mini" type="text" icon="el-icon-edit" v-if="scope.row.caseFlowId == 15 || scope.row.caseFlowId == 16 || scope.row.caseFlowId == 17" @click="caseFilingDetails(scope.row)">归档详情</el-button>  
75
-                    <el-button size="mini" type="text" icon="el-icon-tickets" v-for="(item) in buttonList" :key="item.id"
76
-                        @click="caseClick(scope.row,item.id)" v-if="item.id == scope.row.caseFlowId && checkPermi([item.buttonAuthFlag]) && scope.row.signButtonFlag != 1">{{ item.nodeName }}</el-button>
76
+                        v-if="scope.row.caseFlowId == 15 || scope.row.caseFlowId == 16 || scope.row.caseFlowId == 17"
77
+                        @click="caseFilingDetails(scope.row)">归档详情</el-button>
78
+                    <div class="btnList" v-for="(item) in buttonList" :key="item.id">
79
+                        <el-button size="mini" type="text" icon="el-icon-tickets" @click="caseClick(scope.row, item.id)"
80
+                            v-if="item.id == scope.row.caseFlowId && checkPermi([item.buttonAuthFlag]) && scope.row.signButtonFlag != 1">{{
81
+                                item.nodeName }}</el-button>
82
+                    </div>
77
                 </template>
83
                 </template>
78
             </el-table-column>
84
             </el-table-column>
79
         </el-table>
85
         </el-table>
91
             :caseFlowNumber="caseFlowNumber">
97
             :caseFlowNumber="caseFlowNumber">
92
         </mediationCaseDetails>
98
         </mediationCaseDetails>
93
         <!-- 案件日志 -->
99
         <!-- 案件日志 -->
94
-        <mediationCaseLog :showcaseLog="showcaseLog" @cancelcaseLog="cancelcaseLog" :caselogDataArr="caselogDataArr" :flagLoading="flagLoading"></mediationCaseLog>
100
+        <mediationCaseLog :showcaseLog="showcaseLog" @cancelcaseLog="cancelcaseLog" :caselogDataArr="caselogDataArr"
101
+            :flagLoading="flagLoading"></mediationCaseLog>
95
         <!-- 证据修改 -->
102
         <!-- 证据修改 -->
96
         <evidenceDialog :evidenceVisable="evidenceVisable" @cancelEvidence="cancelEvidence" :evidenceData="evidenceData">
103
         <evidenceDialog :evidenceVisable="evidenceVisable" @cancelEvidence="cancelEvidence" :evidenceData="evidenceData">
97
         </evidenceDialog>
104
         </evidenceDialog>
98
         <!-- 缴费 -->
105
         <!-- 缴费 -->
99
         <payDialog :openPay="openPay" :payTitle="payTitle" :formPayDetail="formPayDetail" :payId="payId" :payForm="payForm"
106
         <payDialog :openPay="openPay" :payTitle="payTitle" :formPayDetail="formPayDetail" :payId="payId" :payForm="payForm"
100
-            :queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow" :formPayDetailAffiliate="formPayDetailAffiliate"></payDialog>
107
+            :queryParams="queryParams" @getList="getList" @paycancelRow="paycancelRow"
108
+            :formPayDetailAffiliate="formPayDetailAffiliate"></payDialog>
101
         <!-- 缴费确认查看详情 -->
109
         <!-- 缴费确认查看详情 -->
102
         <paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
110
         <paymentdetailsDialog :openDialog="openDialog" @cancelpaymentdetails="cancelpaymentdetails" :title="payTitle"
103
-            :detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma" :isapplicant="isapplicant" @getList="getList">
111
+            :detailform="detailform" :queryParams="queryParams" :flag="flag" :paymentConfirma="paymentConfirma"
112
+            :isapplicant="isapplicant" @getList="getList">
104
         </paymentdetailsDialog>
113
         </paymentdetailsDialog>
105
         <!-- 案件受理 -->
114
         <!-- 案件受理 -->
106
         <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
115
         <caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
107
             :caseAcceptanceData="caseAcceptanceData" @getList="getList"></caseAcceptance>
116
             :caseAcceptanceData="caseAcceptanceData" @getList="getList"></caseAcceptance>
108
         <!-- 被申请人缴费 -->
117
         <!-- 被申请人缴费 -->
109
-        <respondentPay :openResPay="openResPay" :resPayTitle="resPayTitle" :formResPayDetail="formResPayDetail" :resPayId="resPayId" :resPayForm="resPayForm"
110
-            :queryParams="queryParams" @getList="getList" @paycancelRes="paycancelRes" :formResPay="formResPay"></respondentPay>    
118
+        <respondentPay :openResPay="openResPay" :resPayTitle="resPayTitle" :formResPayDetail="formResPayDetail"
119
+            :resPayId="resPayId" :resPayForm="resPayForm" :queryParams="queryParams" @getList="getList"
120
+            @paycancelRes="paycancelRes" :formResPay="formResPay"></respondentPay>
111
         <!-- 调解员弹窗 -->
121
         <!-- 调解员弹窗 -->
112
         <selectMediator @cancelMediator="cancelMediator" :mediatorVisable="mediatorVisable" :mediatorData="mediatorData"
122
         <selectMediator @cancelMediator="cancelMediator" :mediatorVisable="mediatorVisable" :mediatorData="mediatorData"
113
             @getList="getList" :queryParams="queryParams"></selectMediator>
123
             @getList="getList" :queryParams="queryParams"></selectMediator>
121
         <timeConfirm @cancelTimeConfirm="cancelTimeConfirm" :timeConfirmVisable="timeConfirmVisable"
131
         <timeConfirm @cancelTimeConfirm="cancelTimeConfirm" :timeConfirmVisable="timeConfirmVisable"
122
             :timeConfirmData="timeConfirmData" @getList="getList" :queryParams="queryParams"></timeConfirm>
132
             :timeConfirmData="timeConfirmData" @getList="getList" :queryParams="queryParams"></timeConfirm>
123
         <!-- 待调解     -->
133
         <!-- 待调解     -->
124
-        <mediation @cancelMediation="cancelMediation" :mediationVisable="mediationVisable"
125
-            :mediationData="mediationData" @getList="getList" :queryParams="queryParams"></mediation>
134
+        <mediation @cancelMediation="cancelMediation" :mediationVisable="mediationVisable" :mediationData="mediationData"
135
+            @getList="getList" :queryParams="queryParams"></mediation>
126
         <confirmMediation @cancelConfirmTion="cancelConfirmTion" :confirmTionVisable="confirmTionVisable"
136
         <confirmMediation @cancelConfirmTion="cancelConfirmTion" :confirmTionVisable="confirmTionVisable"
127
             :confirmTionData="confirmTionData" @getList="getList" :queryParams="queryParams"></confirmMediation>
137
             :confirmTionData="confirmTionData" @getList="getList" :queryParams="queryParams"></confirmMediation>
128
         <!-- 归档详情 -->
138
         <!-- 归档详情 -->
129
-        <caseFilingDetailsPage :showarchiveDetails="showarchiveDetails" :caseFilingData="caseFilingData" @cancelDetail="cancelDetail" :detailsAwardNum="detailsAwardNum" :flagLoadingS="flagLoadingS"></caseFilingDetailsPage>
139
+        <caseFilingDetailsPage :showarchiveDetails="showarchiveDetails" :caseFilingData="caseFilingData"
140
+            @cancelDetail="cancelDetail" :detailsAwardNum="detailsAwardNum" :flagLoadingS="flagLoadingS">
141
+        </caseFilingDetailsPage>
130
     </div>
142
     </div>
131
 </template>
143
 </template>
132
 
144
 
133
 <script>
145
 <script>
134
-import { caseApplicationList, caseApplicationSelectById,submitCaseApply,selectPaymentDetail,sealApply,selectSealUrl,listCaseLogRecord,msCaseFile,msCaseSign,listDeptApplied,msCaseSignUrlApplyPC} from '@/api/caseManagement/caseManagement.js'
146
+import { caseApplicationList, caseApplicationSelectById, submitCaseApply, selectPaymentDetail, sealApply, selectSealUrl, listCaseLogRecord, msCaseFile, msCaseSign, listDeptApplied, msCaseSignUrlApplyPC } from '@/api/caseManagement/caseManagement.js'
135
 import { listDept } from '@/api/system/dept.js'
147
 import { listDept } from '@/api/system/dept.js'
136
 import { queryCaseFlowInfo } from '@/api/caseprocessManagement/caseprocessManagement.js'
148
 import { queryCaseFlowInfo } from '@/api/caseprocessManagement/caseprocessManagement.js'
137
 import moment from "moment";
149
 import moment from "moment";
189
             dataList: [],
201
             dataList: [],
190
             addVisable: false,//新增弹窗
202
             addVisable: false,//新增弹窗
191
             openPay: false, //缴费弹框
203
             openPay: false, //缴费弹框
192
-            openResPay:false,//被申请人缴费弹窗
204
+            openResPay: false,//被申请人缴费弹窗
193
             formPayDetail: {},
205
             formPayDetail: {},
194
-            formResPayDetail:{},
206
+            formResPayDetail: {},
195
             payId: null,
207
             payId: null,
196
-            resPayId:null,
208
+            resPayId: null,
197
             payForm: {},
209
             payForm: {},
198
-            resPayForm:{},
210
+            resPayForm: {},
199
             openCompressedPackages: false,//压缩包导入弹窗
211
             openCompressedPackages: false,//压缩包导入弹窗
200
             processVisable: false,//案件详情
212
             processVisable: false,//案件详情
201
             showcaseLog: false,//案件日志
213
             showcaseLog: false,//案件日志
202
             openDialog: false,//确认缴费和缴费详情
214
             openDialog: false,//确认缴费和缴费详情
203
             detailform: {}, //缴费详情数据
215
             detailform: {}, //缴费详情数据
204
             evidenceVisable: false,//证据修改弹窗
216
             evidenceVisable: false,//证据修改弹窗
205
-            mediationVisable:false,//待调解弹窗
206
-            mediationData:{},
207
-            payTitle:"",//缴费标题
208
-            resPayTitle:'',//被申请人缴费标题
209
-            paymentConfirma:{},//缴费确认
210
-            showAcceptance:false,//案件受理弹框
211
-            caseAcceptanceData:{},//案件受理数据
212
-            mediatorVisable:false,//选择调解员弹窗
213
-            timeVisable:false,//预约时间弹窗
214
-            confirmVisable:false,//确认时间/调解员
215
-            caseFlowNumber:{},//案件流程数据
216
-            caselogDataArr:[],//案件日志数据
217
+            mediationVisable: false,//待调解弹窗
218
+            mediationData: {},
219
+            payTitle: "",//缴费标题
220
+            resPayTitle: '',//被申请人缴费标题
221
+            paymentConfirma: {},//缴费确认
222
+            showAcceptance: false,//案件受理弹框
223
+            caseAcceptanceData: {},//案件受理数据
224
+            mediatorVisable: false,//选择调解员弹窗
225
+            timeVisable: false,//预约时间弹窗
226
+            confirmVisable: false,//确认时间/调解员
227
+            caseFlowNumber: {},//案件流程数据
228
+            caselogDataArr: [],//案件日志数据
217
             flagLoading: true, //案件日志弹框loading
229
             flagLoading: true, //案件日志弹框loading
218
-            confirmTionVisable:false,//确认调解书弹窗
219
-            addModifyData:null,//新增修改传的参数
220
-            showarchiveDetails:false,//归档详情弹窗
221
-            detailsAwardNum:{},
230
+            confirmTionVisable: false,//确认调解书弹窗
231
+            addModifyData: null,//新增修改传的参数
232
+            showarchiveDetails: false,//归档详情弹窗
233
+            detailsAwardNum: {},
222
             flagLoadingS: true,
234
             flagLoadingS: true,
223
-            formPayDetailAffiliate:{},
224
-            formResPay:{},
225
-            mediatorData:{},
235
+            formPayDetailAffiliate: {},
236
+            formResPay: {},
237
+            mediatorData: {},
226
             flag: null,
238
             flag: null,
227
             caseData: {},
239
             caseData: {},
228
             evidenceData: {},
240
             evidenceData: {},
236
             departmentData: {},
248
             departmentData: {},
237
             timeConfirmVisable: false,
249
             timeConfirmVisable: false,
238
             timeConfirmData: {},
250
             timeConfirmData: {},
239
-            confirmTionData:{},
251
+            confirmTionData: {},
240
             buttonList: [],
252
             buttonList: [],
241
             caseStausArr: [],//案件状态
253
             caseStausArr: [],//案件状态
242
             isapplicant: true, //判断角色申请人或非申请人
254
             isapplicant: true, //判断角色申请人或非申请人
243
-            caseFilingData:{}
255
+            caseFilingData: {}
244
         };
256
         };
245
     },
257
     },
246
     created() {
258
     created() {
250
     },
262
     },
251
     methods: {
263
     methods: {
252
         /**所有按钮事件 */
264
         /**所有按钮事件 */
253
-        caseClick(val,type){
254
-            if(type == 1){
265
+        caseClick(val, type) {
266
+            if (type == 1) {
255
                 // 提交案件
267
                 // 提交案件
256
                 this.onsubmitRow(val);
268
                 this.onsubmitRow(val);
257
-            }else if(type == 2){
269
+            } else if (type == 2) {
258
                 // 缴费
270
                 // 缴费
259
                 this.payStatus(val);
271
                 this.payStatus(val);
260
-            }else if(type == 3 || type == 45){
272
+            } else if (type == 3 || type == 45) {
261
                 // 确认缴费
273
                 // 确认缴费
262
-                this.paymentconfirmationRow(val,type);
263
-            }else if(type == 4){
274
+                this.paymentconfirmationRow(val, type);
275
+            } else if (type == 4) {
264
                 // 受理分配
276
                 // 受理分配
265
                 this.caseAccep(val);
277
                 this.caseAccep(val);
266
-            }else if(type == 5){
278
+            } else if (type == 5) {
267
                 // 选择调解员
279
                 // 选择调解员
268
                 this.selectMediator(val);
280
                 this.selectMediator(val);
269
-            }else if(type == 6){
281
+            } else if (type == 6) {
270
                 // 核实调解员
282
                 // 核实调解员
271
                 this.secretaryConfirm(val);
283
                 this.secretaryConfirm(val);
272
-            }else if(type == 7){
284
+            } else if (type == 7) {
273
                 // 确认调解员
285
                 // 确认调解员
274
                 this.department(val);
286
                 this.department(val);
275
-            }else if(type == 8){
287
+            } else if (type == 8) {
276
                 // 确定调解时间
288
                 // 确定调解时间
277
                 this.timeConfirm(val);
289
                 this.timeConfirm(val);
278
-            }else if(type == 9){
290
+            } else if (type == 9) {
279
                 // 调解
291
                 // 调解
280
                 this.mediationClick(val)
292
                 this.mediationClick(val)
281
-            }else if(type == 10){
293
+            } else if (type == 10) {
282
                 // 确认调解书
294
                 // 确认调解书
283
                 this.confirmMediation(val)
295
                 this.confirmMediation(val)
284
-            }else if(type == 11){
296
+            } else if (type == 11) {
285
                 // 签名
297
                 // 签名
286
                 this.msCaseSignUrlApplyPCFn(val)
298
                 this.msCaseSignUrlApplyPCFn(val)
287
-            }else if(type == 12){
299
+            } else if (type == 12) {
288
                 // 用印申请
300
                 // 用印申请
289
                 this.consultantApplica(val)
301
                 this.consultantApplica(val)
290
-            }else if(type == 13){
302
+            } else if (type == 13) {
291
                 // 用印
303
                 // 用印
292
                 this.departmentApplica(val)
304
                 this.departmentApplica(val)
293
-            }else if(type == 14){
305
+            } else if (type == 14) {
294
                 // 归档
306
                 // 归档
295
                 this.caseFiling(val);
307
                 this.caseFiling(val);
296
-            }else if(type == 15){
308
+            } else if (type == 15) {
297
                 // 申请人签收
309
                 // 申请人签收
298
                 this.signMediation(val)
310
                 this.signMediation(val)
299
-            }else if(type == 16){
311
+            } else if (type == 16) {
300
                 // 被申请人签收
312
                 // 被申请人签收
301
                 this.receivedMediation(val)
313
                 this.receivedMediation(val)
302
-            }else if(type == 17){
314
+            } else if (type == 17) {
303
                 //结束
315
                 //结束
304
-            }else if(type == 44){
316
+            } else if (type == 44) {
305
                 // 被申请人缴费
317
                 // 被申请人缴费
306
                 this.resPayStatus(val)
318
                 this.resPayStatus(val)
307
             }
319
             }
314
             }).then(res => {
326
             }).then(res => {
315
                 console.log(res)
327
                 console.log(res)
316
                 res.rows.forEach(item => {
328
                 res.rows.forEach(item => {
317
-                    if(item.id !=17){
329
+                    if (item.id != 17) {
318
                         this.buttonList.push(item)
330
                         this.buttonList.push(item)
319
                     }
331
                     }
320
                     this.caseStausArr.push(item)
332
                     this.caseStausArr.push(item)
321
-                });               
333
+                });
322
             })
334
             })
323
         },
335
         },
324
         /** 新增案件 */
336
         /** 新增案件 */
325
         addCase() {
337
         addCase() {
326
-            this.addModifyData =1;
338
+            this.addModifyData = 1;
327
             this.addVisable = true;
339
             this.addVisable = true;
328
             this.caseData = {};
340
             this.caseData = {};
329
             this.caseDisabled = false;
341
             this.caseDisabled = false;
331
         },
343
         },
332
         /** 查看详情 */
344
         /** 查看详情 */
333
         checkDetail(val) {
345
         checkDetail(val) {
334
-            this.addModifyData =2;
346
+            this.addModifyData = 2;
335
             this.addVisable = true;
347
             this.addVisable = true;
336
             this.caseData = val;
348
             this.caseData = val;
337
             this.caseDisabled = true;
349
             this.caseDisabled = true;
342
             this.addModifyData = 3
354
             this.addModifyData = 3
343
             this.addVisable = true;
355
             this.addVisable = true;
344
             this.caseData = row;
356
             this.caseData = row;
345
-            this.$set(this.caseData,'flag',2)
357
+            this.$set(this.caseData, 'flag', 2)
346
             this.caseDisabled = false;
358
             this.caseDisabled = false;
347
             this.tabFlag = false;
359
             this.tabFlag = false;
348
         },
360
         },
389
             //         this.$modal.msgSuccess("立案申请成功");
401
             //         this.$modal.msgSuccess("立案申请成功");
390
             //     })
402
             //     })
391
             //     .catch(() => { });
403
             //     .catch(() => { });
392
-            msCaseSignUrlApplyPC({ caseId: row.id }).then(res=>{
393
-                console.log(res,"PPPPPPPPPPPPPPPPPPPP");
404
+            msCaseSignUrlApplyPC({ caseId: row.id }).then(res => {
405
+                console.log(res, "PPPPPPPPPPPPPPPPPPPP");
394
                 window.open(res.data.sealUrl);
406
                 window.open(res.data.sealUrl);
395
             })
407
             })
396
         },
408
         },
404
             this.timeVisable = true;
416
             this.timeVisable = true;
405
         },
417
         },
406
         /** 调解 */
418
         /** 调解 */
407
-        mediationClick(val){
419
+        mediationClick(val) {
408
             this.mediationVisable = true;
420
             this.mediationVisable = true;
409
             this.mediationData = val;
421
             this.mediationData = val;
410
         },
422
         },
411
         /** 确认调解书 */
423
         /** 确认调解书 */
412
-        confirmMediation(val){
424
+        confirmMediation(val) {
413
             this.confirmTionVisable = true;
425
             this.confirmTionVisable = true;
414
             this.confirmTionData = val;
426
             this.confirmTionData = val;
415
         },
427
         },
499
             this.timeVisable = false;
511
             this.timeVisable = false;
500
         },
512
         },
501
         /**取消调解 */
513
         /**取消调解 */
502
-        cancelMediation(){
514
+        cancelMediation() {
503
             this.timeConfirmVisable = false;
515
             this.timeConfirmVisable = false;
504
         },
516
         },
505
         /** 取消确认调解弹窗 */
517
         /** 取消确认调解弹窗 */
506
-        cancelConfirmTion(){
518
+        cancelConfirmTion() {
507
             this.confirmTionVisable = false;
519
             this.confirmTionVisable = false;
508
         },
520
         },
509
-        cancelMediation(){
521
+        cancelMediation() {
510
             this.mediationVisable = false;
522
             this.mediationVisable = false;
511
         },
523
         },
512
         cancelConfirm() {
524
         cancelConfirm() {
580
             this.showAcceptance = false
592
             this.showAcceptance = false
581
         },
593
         },
582
         // 缴费确认
594
         // 缴费确认
583
-        paymentconfirmationRow(row,type) {
595
+        paymentconfirmationRow(row, type) {
584
             this.paymentConfirma = row
596
             this.paymentConfirma = row
585
             console.log(this.paymentConfirma)
597
             console.log(this.paymentConfirma)
586
             this.paymentDetails({
598
             this.paymentDetails({
591
             this.flag = 0;
603
             this.flag = 0;
592
             this.detailform = {}
604
             this.detailform = {}
593
             if (type == 3) {
605
             if (type == 3) {
594
-            // 申请人
606
+                // 申请人
595
                 this.isapplicant = true
607
                 this.isapplicant = true
596
-            }else {
608
+            } else {
597
                 this.isapplicant = false
609
                 this.isapplicant = false
598
             }
610
             }
599
         },
611
         },
629
             this.caseLogNumber = row
641
             this.caseLogNumber = row
630
             this.showcaseLog = true
642
             this.showcaseLog = true
631
             this.flagLoading = true;
643
             this.flagLoading = true;
632
-            listCaseLogRecord({caseId:row.id}).then(res=>{
633
-                    this.caselogDataArr = res.data
634
-                    this.flagLoading = false;
644
+            listCaseLogRecord({ caseId: row.id }).then(res => {
645
+                this.caselogDataArr = res.data
646
+                this.flagLoading = false;
635
             })
647
             })
636
         },
648
         },
637
         cancelcaseLog() {
649
         cancelcaseLog() {
641
         caseFiling(row) {
653
         caseFiling(row) {
642
             console.log(row.id)
654
             console.log(row.id)
643
             let paramValues = {
655
             let paramValues = {
644
-                ids:[row.id]
656
+                ids: [row.id]
645
             }
657
             }
646
             this.$modal.confirm("你确定要案件送达吗?").then((res) => {
658
             this.$modal.confirm("你确定要案件送达吗?").then((res) => {
647
-               msCaseFile(paramValues).then(res=>{
659
+                msCaseFile(paramValues).then(res => {
648
                     this.$modal.msgSuccess("案件送达成功");
660
                     this.$modal.msgSuccess("案件送达成功");
649
                     this.getList(this.queryParams);
661
                     this.getList(this.queryParams);
650
-               }) 
662
+                })
651
             }).catch(() => {
663
             }).catch(() => {
652
 
664
 
653
             })
665
             })
655
         //申请人签收调解书
667
         //申请人签收调解书
656
         signMediation(row) {
668
         signMediation(row) {
657
             this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
669
             this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
658
-                this.signingMediationAgreement({caseId:row.id,isSignApply:1})
670
+                this.signingMediationAgreement({ caseId: row.id, isSignApply: 1 })
659
             }).catch(() => {
671
             }).catch(() => {
660
 
672
 
661
             })
673
             })
663
         //被申请人签收调解书
675
         //被申请人签收调解书
664
         receivedMediation(row) {
676
         receivedMediation(row) {
665
             this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
677
             this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
666
-                this.signingMediationAgreement({caseId:row.id,isSignRespon:1})
678
+                this.signingMediationAgreement({ caseId: row.id, isSignRespon: 1 })
667
             }).catch(() => {
679
             }).catch(() => {
668
 
680
 
669
             })
681
             })
670
         },
682
         },
671
         // 申请人和被申请人签收调解书接口
683
         // 申请人和被申请人签收调解书接口
672
-         signingMediationAgreement(val){
673
-             console.log(val)
674
-             msCaseSign(val).then(res=>{
675
-                 this.$modal.msgSuccess("签收成功");
676
-                 this.getList(this.queryParams);
677
-             })
678
-         },
684
+        signingMediationAgreement(val) {
685
+            console.log(val)
686
+            msCaseSign(val).then(res => {
687
+                this.$modal.msgSuccess("签收成功");
688
+                this.getList(this.queryParams);
689
+            })
690
+        },
679
         //归档详情
691
         //归档详情
680
-        caseFilingDetails(val){
692
+        caseFilingDetails(val) {
681
             this.showarchiveDetails = true;
693
             this.showarchiveDetails = true;
682
             this.caseFilingData = val;
694
             this.caseFilingData = val;
683
-            let vals = {id:val.id}
684
-            caseApplicationSelectById(vals).then(res=>{
695
+            let vals = { id: val.id }
696
+            caseApplicationSelectById(vals).then(res => {
685
                 res.data.affiliate.respondentSex = Number(res.data.affiliate.respondentSex)
697
                 res.data.affiliate.respondentSex = Number(res.data.affiliate.respondentSex)
686
                 this.detailsAwardNum = res.data
698
                 this.detailsAwardNum = res.data
687
                 console.log(this.detailsAwardNum)
699
                 console.log(this.detailsAwardNum)
688
                 this.flagLoadingS = false
700
                 this.flagLoadingS = false
689
             })
701
             })
690
         },
702
         },
691
-        cancelDetail(){
703
+        cancelDetail() {
692
             this.showarchiveDetails = false
704
             this.showarchiveDetails = false
693
         }
705
         }
694
-        
706
+
695
     },
707
     },
696
 };
708
 };
697
 </script>
709
 </script>