|
|
@@ -3,8 +3,8 @@
|
|
3
|
3
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true">
|
|
4
|
4
|
<el-form-item label="案件状态" prop="caseFlowId">
|
|
5
|
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
|
8
|
</el-select>
|
|
9
|
9
|
</el-form-item>
|
|
10
|
10
|
<!-- <el-form-item label="申请机构" prop="applicationOrganId">
|
|
|
@@ -33,7 +33,8 @@
|
|
33
|
33
|
</el-form>
|
|
34
|
34
|
<el-row :gutter="10" class="mb8">
|
|
35
|
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
|
38
|
</el-col>
|
|
38
|
39
|
<!-- TODO 后期可能加上-->
|
|
39
|
40
|
<!-- <el-col :span="1.5">
|
|
|
@@ -61,19 +62,24 @@
|
|
61
|
62
|
<el-table-column label="创建时间" align="center" prop="createTime" :show-overflow-tooltip="true" />
|
|
62
|
63
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
63
|
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
|
67
|
<el-button size="mini" @click="checkDetail(scope.row)" type="text" icon="el-icon-view">查看详情</el-button>
|
|
67
|
68
|
<el-button size="mini" @click="caseFlow(scope.row)" type="text" icon="el-icon-zoom-in">查看流程</el-button>
|
|
68
|
69
|
<el-button size="mini" @click="caseLog(scope.row)" type="text"
|
|
69
|
70
|
icon="el-icon-edit-outline">案件日志</el-button>
|
|
70
|
71
|
<el-button size="mini" @click="viewpaymentformRow(scope.row)" type="text"
|
|
71
|
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
|
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
|
83
|
</template>
|
|
78
|
84
|
</el-table-column>
|
|
79
|
85
|
</el-table>
|
|
|
@@ -91,23 +97,27 @@
|
|
91
|
97
|
:caseFlowNumber="caseFlowNumber">
|
|
92
|
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
|
103
|
<evidenceDialog :evidenceVisable="evidenceVisable" @cancelEvidence="cancelEvidence" :evidenceData="evidenceData">
|
|
97
|
104
|
</evidenceDialog>
|
|
98
|
105
|
<!-- 缴费 -->
|
|
99
|
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
|
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
|
113
|
</paymentdetailsDialog>
|
|
105
|
114
|
<!-- 案件受理 -->
|
|
106
|
115
|
<caseAcceptance :showAcceptance="showAcceptance" @cancelAcceptance="cancelAcceptance"
|
|
107
|
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
|
122
|
<selectMediator @cancelMediator="cancelMediator" :mediatorVisable="mediatorVisable" :mediatorData="mediatorData"
|
|
113
|
123
|
@getList="getList" :queryParams="queryParams"></selectMediator>
|
|
|
@@ -121,17 +131,19 @@
|
|
121
|
131
|
<timeConfirm @cancelTimeConfirm="cancelTimeConfirm" :timeConfirmVisable="timeConfirmVisable"
|
|
122
|
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
|
136
|
<confirmMediation @cancelConfirmTion="cancelConfirmTion" :confirmTionVisable="confirmTionVisable"
|
|
127
|
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
|
142
|
</div>
|
|
131
|
143
|
</template>
|
|
132
|
144
|
|
|
133
|
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
|
147
|
import { listDept } from '@/api/system/dept.js'
|
|
136
|
148
|
import { queryCaseFlowInfo } from '@/api/caseprocessManagement/caseprocessManagement.js'
|
|
137
|
149
|
import moment from "moment";
|
|
|
@@ -189,40 +201,40 @@ export default {
|
|
189
|
201
|
dataList: [],
|
|
190
|
202
|
addVisable: false,//新增弹窗
|
|
191
|
203
|
openPay: false, //缴费弹框
|
|
192
|
|
- openResPay:false,//被申请人缴费弹窗
|
|
|
204
|
+ openResPay: false,//被申请人缴费弹窗
|
|
193
|
205
|
formPayDetail: {},
|
|
194
|
|
- formResPayDetail:{},
|
|
|
206
|
+ formResPayDetail: {},
|
|
195
|
207
|
payId: null,
|
|
196
|
|
- resPayId:null,
|
|
|
208
|
+ resPayId: null,
|
|
197
|
209
|
payForm: {},
|
|
198
|
|
- resPayForm:{},
|
|
|
210
|
+ resPayForm: {},
|
|
199
|
211
|
openCompressedPackages: false,//压缩包导入弹窗
|
|
200
|
212
|
processVisable: false,//案件详情
|
|
201
|
213
|
showcaseLog: false,//案件日志
|
|
202
|
214
|
openDialog: false,//确认缴费和缴费详情
|
|
203
|
215
|
detailform: {}, //缴费详情数据
|
|
204
|
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
|
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
|
234
|
flagLoadingS: true,
|
|
223
|
|
- formPayDetailAffiliate:{},
|
|
224
|
|
- formResPay:{},
|
|
225
|
|
- mediatorData:{},
|
|
|
235
|
+ formPayDetailAffiliate: {},
|
|
|
236
|
+ formResPay: {},
|
|
|
237
|
+ mediatorData: {},
|
|
226
|
238
|
flag: null,
|
|
227
|
239
|
caseData: {},
|
|
228
|
240
|
evidenceData: {},
|
|
|
@@ -236,11 +248,11 @@ export default {
|
|
236
|
248
|
departmentData: {},
|
|
237
|
249
|
timeConfirmVisable: false,
|
|
238
|
250
|
timeConfirmData: {},
|
|
239
|
|
- confirmTionData:{},
|
|
|
251
|
+ confirmTionData: {},
|
|
240
|
252
|
buttonList: [],
|
|
241
|
253
|
caseStausArr: [],//案件状态
|
|
242
|
254
|
isapplicant: true, //判断角色申请人或非申请人
|
|
243
|
|
- caseFilingData:{}
|
|
|
255
|
+ caseFilingData: {}
|
|
244
|
256
|
};
|
|
245
|
257
|
},
|
|
246
|
258
|
created() {
|
|
|
@@ -250,58 +262,58 @@ export default {
|
|
250
|
262
|
},
|
|
251
|
263
|
methods: {
|
|
252
|
264
|
/**所有按钮事件 */
|
|
253
|
|
- caseClick(val,type){
|
|
254
|
|
- if(type == 1){
|
|
|
265
|
+ caseClick(val, type) {
|
|
|
266
|
+ if (type == 1) {
|
|
255
|
267
|
// 提交案件
|
|
256
|
268
|
this.onsubmitRow(val);
|
|
257
|
|
- }else if(type == 2){
|
|
|
269
|
+ } else if (type == 2) {
|
|
258
|
270
|
// 缴费
|
|
259
|
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
|
277
|
this.caseAccep(val);
|
|
266
|
|
- }else if(type == 5){
|
|
|
278
|
+ } else if (type == 5) {
|
|
267
|
279
|
// 选择调解员
|
|
268
|
280
|
this.selectMediator(val);
|
|
269
|
|
- }else if(type == 6){
|
|
|
281
|
+ } else if (type == 6) {
|
|
270
|
282
|
// 核实调解员
|
|
271
|
283
|
this.secretaryConfirm(val);
|
|
272
|
|
- }else if(type == 7){
|
|
|
284
|
+ } else if (type == 7) {
|
|
273
|
285
|
// 确认调解员
|
|
274
|
286
|
this.department(val);
|
|
275
|
|
- }else if(type == 8){
|
|
|
287
|
+ } else if (type == 8) {
|
|
276
|
288
|
// 确定调解时间
|
|
277
|
289
|
this.timeConfirm(val);
|
|
278
|
|
- }else if(type == 9){
|
|
|
290
|
+ } else if (type == 9) {
|
|
279
|
291
|
// 调解
|
|
280
|
292
|
this.mediationClick(val)
|
|
281
|
|
- }else if(type == 10){
|
|
|
293
|
+ } else if (type == 10) {
|
|
282
|
294
|
// 确认调解书
|
|
283
|
295
|
this.confirmMediation(val)
|
|
284
|
|
- }else if(type == 11){
|
|
|
296
|
+ } else if (type == 11) {
|
|
285
|
297
|
// 签名
|
|
286
|
298
|
this.msCaseSignUrlApplyPCFn(val)
|
|
287
|
|
- }else if(type == 12){
|
|
|
299
|
+ } else if (type == 12) {
|
|
288
|
300
|
// 用印申请
|
|
289
|
301
|
this.consultantApplica(val)
|
|
290
|
|
- }else if(type == 13){
|
|
|
302
|
+ } else if (type == 13) {
|
|
291
|
303
|
// 用印
|
|
292
|
304
|
this.departmentApplica(val)
|
|
293
|
|
- }else if(type == 14){
|
|
|
305
|
+ } else if (type == 14) {
|
|
294
|
306
|
// 归档
|
|
295
|
307
|
this.caseFiling(val);
|
|
296
|
|
- }else if(type == 15){
|
|
|
308
|
+ } else if (type == 15) {
|
|
297
|
309
|
// 申请人签收
|
|
298
|
310
|
this.signMediation(val)
|
|
299
|
|
- }else if(type == 16){
|
|
|
311
|
+ } else if (type == 16) {
|
|
300
|
312
|
// 被申请人签收
|
|
301
|
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
|
318
|
this.resPayStatus(val)
|
|
307
|
319
|
}
|
|
|
@@ -314,16 +326,16 @@ export default {
|
|
314
|
326
|
}).then(res => {
|
|
315
|
327
|
console.log(res)
|
|
316
|
328
|
res.rows.forEach(item => {
|
|
317
|
|
- if(item.id !=17){
|
|
|
329
|
+ if (item.id != 17) {
|
|
318
|
330
|
this.buttonList.push(item)
|
|
319
|
331
|
}
|
|
320
|
332
|
this.caseStausArr.push(item)
|
|
321
|
|
- });
|
|
|
333
|
+ });
|
|
322
|
334
|
})
|
|
323
|
335
|
},
|
|
324
|
336
|
/** 新增案件 */
|
|
325
|
337
|
addCase() {
|
|
326
|
|
- this.addModifyData =1;
|
|
|
338
|
+ this.addModifyData = 1;
|
|
327
|
339
|
this.addVisable = true;
|
|
328
|
340
|
this.caseData = {};
|
|
329
|
341
|
this.caseDisabled = false;
|
|
|
@@ -331,7 +343,7 @@ export default {
|
|
331
|
343
|
},
|
|
332
|
344
|
/** 查看详情 */
|
|
333
|
345
|
checkDetail(val) {
|
|
334
|
|
- this.addModifyData =2;
|
|
|
346
|
+ this.addModifyData = 2;
|
|
335
|
347
|
this.addVisable = true;
|
|
336
|
348
|
this.caseData = val;
|
|
337
|
349
|
this.caseDisabled = true;
|
|
|
@@ -342,7 +354,7 @@ export default {
|
|
342
|
354
|
this.addModifyData = 3
|
|
343
|
355
|
this.addVisable = true;
|
|
344
|
356
|
this.caseData = row;
|
|
345
|
|
- this.$set(this.caseData,'flag',2)
|
|
|
357
|
+ this.$set(this.caseData, 'flag', 2)
|
|
346
|
358
|
this.caseDisabled = false;
|
|
347
|
359
|
this.tabFlag = false;
|
|
348
|
360
|
},
|
|
|
@@ -389,8 +401,8 @@ export default {
|
|
389
|
401
|
// this.$modal.msgSuccess("立案申请成功");
|
|
390
|
402
|
// })
|
|
391
|
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
|
406
|
window.open(res.data.sealUrl);
|
|
395
|
407
|
})
|
|
396
|
408
|
},
|
|
|
@@ -404,12 +416,12 @@ export default {
|
|
404
|
416
|
this.timeVisable = true;
|
|
405
|
417
|
},
|
|
406
|
418
|
/** 调解 */
|
|
407
|
|
- mediationClick(val){
|
|
|
419
|
+ mediationClick(val) {
|
|
408
|
420
|
this.mediationVisable = true;
|
|
409
|
421
|
this.mediationData = val;
|
|
410
|
422
|
},
|
|
411
|
423
|
/** 确认调解书 */
|
|
412
|
|
- confirmMediation(val){
|
|
|
424
|
+ confirmMediation(val) {
|
|
413
|
425
|
this.confirmTionVisable = true;
|
|
414
|
426
|
this.confirmTionData = val;
|
|
415
|
427
|
},
|
|
|
@@ -499,14 +511,14 @@ export default {
|
|
499
|
511
|
this.timeVisable = false;
|
|
500
|
512
|
},
|
|
501
|
513
|
/**取消调解 */
|
|
502
|
|
- cancelMediation(){
|
|
|
514
|
+ cancelMediation() {
|
|
503
|
515
|
this.timeConfirmVisable = false;
|
|
504
|
516
|
},
|
|
505
|
517
|
/** 取消确认调解弹窗 */
|
|
506
|
|
- cancelConfirmTion(){
|
|
|
518
|
+ cancelConfirmTion() {
|
|
507
|
519
|
this.confirmTionVisable = false;
|
|
508
|
520
|
},
|
|
509
|
|
- cancelMediation(){
|
|
|
521
|
+ cancelMediation() {
|
|
510
|
522
|
this.mediationVisable = false;
|
|
511
|
523
|
},
|
|
512
|
524
|
cancelConfirm() {
|
|
|
@@ -580,7 +592,7 @@ export default {
|
|
580
|
592
|
this.showAcceptance = false
|
|
581
|
593
|
},
|
|
582
|
594
|
// 缴费确认
|
|
583
|
|
- paymentconfirmationRow(row,type) {
|
|
|
595
|
+ paymentconfirmationRow(row, type) {
|
|
584
|
596
|
this.paymentConfirma = row
|
|
585
|
597
|
console.log(this.paymentConfirma)
|
|
586
|
598
|
this.paymentDetails({
|
|
|
@@ -591,9 +603,9 @@ export default {
|
|
591
|
603
|
this.flag = 0;
|
|
592
|
604
|
this.detailform = {}
|
|
593
|
605
|
if (type == 3) {
|
|
594
|
|
- // 申请人
|
|
|
606
|
+ // 申请人
|
|
595
|
607
|
this.isapplicant = true
|
|
596
|
|
- }else {
|
|
|
608
|
+ } else {
|
|
597
|
609
|
this.isapplicant = false
|
|
598
|
610
|
}
|
|
599
|
611
|
},
|
|
|
@@ -629,9 +641,9 @@ export default {
|
|
629
|
641
|
this.caseLogNumber = row
|
|
630
|
642
|
this.showcaseLog = true
|
|
631
|
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
|
649
|
cancelcaseLog() {
|
|
|
@@ -641,13 +653,13 @@ export default {
|
|
641
|
653
|
caseFiling(row) {
|
|
642
|
654
|
console.log(row.id)
|
|
643
|
655
|
let paramValues = {
|
|
644
|
|
- ids:[row.id]
|
|
|
656
|
+ ids: [row.id]
|
|
645
|
657
|
}
|
|
646
|
658
|
this.$modal.confirm("你确定要案件送达吗?").then((res) => {
|
|
647
|
|
- msCaseFile(paramValues).then(res=>{
|
|
|
659
|
+ msCaseFile(paramValues).then(res => {
|
|
648
|
660
|
this.$modal.msgSuccess("案件送达成功");
|
|
649
|
661
|
this.getList(this.queryParams);
|
|
650
|
|
- })
|
|
|
662
|
+ })
|
|
651
|
663
|
}).catch(() => {
|
|
652
|
664
|
|
|
653
|
665
|
})
|
|
|
@@ -655,7 +667,7 @@ export default {
|
|
655
|
667
|
//申请人签收调解书
|
|
656
|
668
|
signMediation(row) {
|
|
657
|
669
|
this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
|
|
658
|
|
- this.signingMediationAgreement({caseId:row.id,isSignApply:1})
|
|
|
670
|
+ this.signingMediationAgreement({ caseId: row.id, isSignApply: 1 })
|
|
659
|
671
|
}).catch(() => {
|
|
660
|
672
|
|
|
661
|
673
|
})
|
|
|
@@ -663,35 +675,35 @@ export default {
|
|
663
|
675
|
//被申请人签收调解书
|
|
664
|
676
|
receivedMediation(row) {
|
|
665
|
677
|
this.$modal.confirm("你确定要签收调解书吗?").then((res) => {
|
|
666
|
|
- this.signingMediationAgreement({caseId:row.id,isSignRespon:1})
|
|
|
678
|
+ this.signingMediationAgreement({ caseId: row.id, isSignRespon: 1 })
|
|
667
|
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
|
693
|
this.showarchiveDetails = true;
|
|
682
|
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
|
697
|
res.data.affiliate.respondentSex = Number(res.data.affiliate.respondentSex)
|
|
686
|
698
|
this.detailsAwardNum = res.data
|
|
687
|
699
|
console.log(this.detailsAwardNum)
|
|
688
|
700
|
this.flagLoadingS = false
|
|
689
|
701
|
})
|
|
690
|
702
|
},
|
|
691
|
|
- cancelDetail(){
|
|
|
703
|
+ cancelDetail() {
|
|
692
|
704
|
this.showarchiveDetails = false
|
|
693
|
705
|
}
|
|
694
|
|
-
|
|
|
706
|
+
|
|
695
|
707
|
},
|
|
696
|
708
|
};
|
|
697
|
709
|
</script>
|