|
|
@@ -24,7 +24,7 @@
|
|
24
|
24
|
<el-table-column label="申请人" align="center" prop="name" :show-overflow-tooltip="true" />
|
|
25
|
25
|
<el-table-column label="仲裁方式" align="center" prop="arbitratMethodName" :show-overflow-tooltip="true" />
|
|
26
|
26
|
<el-table-column label="仲裁员" align="center" prop="arbitratorName" :show-overflow-tooltip="true" />
|
|
27
|
|
- <el-table-column label="案件状态" align="center" prop="caseStatusName">
|
|
|
27
|
+ <el-table-column label="案件状态" align="center" prop="caseStatusName" :show-overflow-tooltip="true">
|
|
28
|
28
|
<template slot-scope="scope">
|
|
29
|
29
|
<el-tag type="success">{{ scope.row.caseStatusName}}</el-tag>
|
|
30
|
30
|
</template>
|
|
|
@@ -42,7 +42,7 @@
|
|
42
|
42
|
<el-button size="mini" type="text" @click="batchWrittenReview(scope.row)">书面审理</el-button>
|
|
43
|
43
|
<el-button size="mini" type="text" @click="secretaryArbitration(scope.row)">秘书审核仲裁文书</el-button>
|
|
44
|
44
|
<el-button size="mini" type="text" @click="arbitratorsVerify(scope.row)">仲裁员核验仲裁文书</el-button>
|
|
45
|
|
- <el-button size="mini" type="text">部门长审核仲裁文书</el-button>
|
|
|
45
|
+ <el-button size="mini" type="text" @click="departmentDocuments(scope.row)">部门长审核仲裁文书</el-button>
|
|
46
|
46
|
<el-button size="mini" type="text" @click="batchSignatures(scope.row)">签名</el-button>
|
|
47
|
47
|
<el-button size="mini" type="text" @click="batchPrintings(scope.row)">用印</el-button>
|
|
48
|
48
|
<el-button size="mini" type="text" @click="arbitrationAward(scope.row)">生成裁决书</el-button>
|
|
|
@@ -55,9 +55,9 @@
|
|
55
|
55
|
@pagination="getList(queryParams)"
|
|
56
|
56
|
/>
|
|
57
|
57
|
<!-- 缴费 -->
|
|
58
|
|
- <batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay" :batchPaymentValue="batchPaymentValue"></batchPayment>
|
|
|
58
|
+ <batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay" :batchPaymentValue="batchPaymentValue" :totalFees="totalFees" :queryParams="queryParams" @getList="getList"></batchPayment>
|
|
59
|
59
|
<!-- 缴费确认 -->
|
|
60
|
|
- <paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment"></paymentConfirmation>
|
|
|
60
|
+ <paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment" :confirmPaymen="confirmPaymen" :queryParams="queryParams" @getList="getList" :totalFeeConfir="totalFeeConfir"></paymentConfirmation>
|
|
61
|
61
|
<!-- 组庭审核 -->
|
|
62
|
62
|
<courtReview :caseVisableReview="caseVisableReview" @cancelCaseReview="cancelCaseReview"></courtReview>
|
|
63
|
63
|
<!-- 查看案件列表 -->
|
|
|
@@ -76,11 +76,14 @@
|
|
76
|
76
|
<arbitratorsDocuments :caseVisableSecretary="caseVisableSecretary" @cancelCaseSecretary="cancelCaseSecretary"></arbitratorsDocuments>
|
|
77
|
77
|
<!-- 仲裁员审核仲裁文书 -->
|
|
78
|
78
|
<arbitratorsvVerify :caseVisablearBitration="caseVisablearBitration" @cancelCaseBitration="cancelCaseBitration"></arbitratorsvVerify>
|
|
|
79
|
+ <!-- 部门长审核仲裁文书 -->
|
|
|
80
|
+ <departmentReviews :caseVisablearHead="caseVisablearHead" @cancelCaseHead="cancelCaseHead"></departmentReviews>
|
|
79
|
81
|
</div>
|
|
80
|
82
|
</template>
|
|
81
|
83
|
|
|
82
|
84
|
<script>
|
|
83
|
|
-import {listBatch,submitCaseApplicationBatch} from '@/api/batchManagement/batchManagement.js'
|
|
|
85
|
+import {listBatch,submitCaseApplicationBatch,payListBatch} from '@/api/batchManagement/batchManagement.js'
|
|
|
86
|
+import { caseApplicationDetail } from "@/api/pay/pay";
|
|
84
|
87
|
import batchPayment from './components/batchPayment.vue'
|
|
85
|
88
|
import paymentConfirmation from './components/paymentConfirmation.vue'
|
|
86
|
89
|
import courtReview from './components/courtReview.vue'
|
|
|
@@ -92,6 +95,7 @@ import batchPrinting from './components/batchPrinting.vue'
|
|
92
|
95
|
import filingReview from './components/filingReview.vue'
|
|
93
|
96
|
import arbitratorsDocuments from './components/arbitratorsDocuments.vue'
|
|
94
|
97
|
import arbitratorsvVerify from './components/arbitratorsvVerify.vue'
|
|
|
98
|
+import departmentReviews from './components/departmentReviews.vue'
|
|
95
|
99
|
export default {
|
|
96
|
100
|
components: {
|
|
97
|
101
|
batchPayment,
|
|
|
@@ -104,7 +108,8 @@ export default {
|
|
104
|
108
|
batchPrinting,
|
|
105
|
109
|
filingReview,
|
|
106
|
110
|
arbitratorsDocuments,
|
|
107
|
|
- arbitratorsvVerify
|
|
|
111
|
+ arbitratorsvVerify,
|
|
|
112
|
+ departmentReviews
|
|
108
|
113
|
|
|
109
|
114
|
},
|
|
110
|
115
|
data() {
|
|
|
@@ -119,6 +124,9 @@ export default {
|
|
119
|
124
|
total: 0,
|
|
120
|
125
|
filingFeviewbatchNumber:'',
|
|
121
|
126
|
batchPaymentValue:{},
|
|
|
127
|
+ confirmPaymen:{},//批量确认缴费
|
|
|
128
|
+ totalFees:{},//缴费总金额
|
|
|
129
|
+ totalFeeConfir:{},//确认缴费总金额
|
|
122
|
130
|
caseVisablePay: false,//批量缴费弹窗
|
|
123
|
131
|
caseVisablePayment:false,//批量缴费确认
|
|
124
|
132
|
caseVisableReview:false,//批量组庭审核
|
|
|
@@ -130,6 +138,7 @@ export default {
|
|
130
|
138
|
caseVisableReviewF:false, //批量立案审查
|
|
131
|
139
|
caseVisableSecretary:false,//秘书审核文书
|
|
132
|
140
|
caseVisablearBitration:false,//仲裁员核查文书
|
|
|
141
|
+ caseVisablearHead:false,//部门长审核文书
|
|
133
|
142
|
dataList: [],
|
|
134
|
143
|
editData:{}
|
|
135
|
144
|
};
|
|
|
@@ -184,14 +193,22 @@ export default {
|
|
184
|
193
|
// 批量缴费
|
|
185
|
194
|
batchPayments(row){
|
|
186
|
195
|
this.batchPaymentValue = row
|
|
187
|
|
- console.log(row)
|
|
|
196
|
+ let batchNumber = row.batchNumber.toString()
|
|
|
197
|
+ payListBatch({batchNumber:batchNumber}).then(res=>{
|
|
|
198
|
+ this.totalFees = res.data
|
|
|
199
|
+ })
|
|
188
|
200
|
this.caseVisablePay = true
|
|
189
|
201
|
},
|
|
190
|
202
|
cancelCasePay(){
|
|
191
|
203
|
this.caseVisablePay = false
|
|
192
|
204
|
},
|
|
193
|
205
|
// 批量缴费确认
|
|
194
|
|
- paymentConfir(){
|
|
|
206
|
+ paymentConfir(row){
|
|
|
207
|
+ this.confirmPaymen = row
|
|
|
208
|
+ let batchNumber = row.batchNumber.toString()
|
|
|
209
|
+ payListBatch({batchNumber:batchNumber}).then(res=>{
|
|
|
210
|
+ this.totalFeeConfir = res.data
|
|
|
211
|
+ })
|
|
195
|
212
|
this.caseVisablePayment = true
|
|
196
|
213
|
},
|
|
197
|
214
|
cancelCasePayment(){
|
|
|
@@ -284,8 +301,14 @@ export default {
|
|
284
|
301
|
},
|
|
285
|
302
|
cancelCaseBitration(){
|
|
286
|
303
|
this.caseVisablearBitration = false
|
|
|
304
|
+ },
|
|
|
305
|
+ // 部门长审核仲裁文书
|
|
|
306
|
+ departmentDocuments(){
|
|
|
307
|
+ this.caseVisablearHead = true
|
|
|
308
|
+ },
|
|
|
309
|
+ cancelCaseHead(){
|
|
|
310
|
+ this.caseVisablearHead = false
|
|
287
|
311
|
}
|
|
288
|
|
-
|
|
289
|
312
|
},
|
|
290
|
313
|
};
|
|
291
|
314
|
</script>
|