|
|
@@ -40,14 +40,14 @@
|
|
40
|
40
|
<el-button size="mini" type="text" @click="courtConfirmations(scope.row)">组庭确认</el-button>
|
|
41
|
41
|
<el-button size="mini" type="text" @click="reviewArbitrations(scope.row)">审核仲裁方式</el-button>
|
|
42
|
42
|
<el-button size="mini" type="text" @click="batchWrittenReview(scope.row)">书面审理</el-button>
|
|
43
|
|
- <el-button size="mini" type="text">仲裁员审核仲裁文书</el-button>
|
|
44
|
|
- <el-button size="mini" type="text">核验仲裁文书</el-button>
|
|
|
43
|
+ <el-button size="mini" type="text" @click="secretaryArbitration(scope.row)">秘书审核仲裁文书</el-button>
|
|
|
44
|
+ <el-button size="mini" type="text" @click="arbitratorsVerify(scope.row)">仲裁员核验仲裁文书</el-button>
|
|
45
|
45
|
<el-button size="mini" type="text">部门长审核仲裁文书</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
|
|
- <el-button size="mini" type="text">生成裁决书</el-button>
|
|
|
48
|
+ <el-button size="mini" type="text" @click="arbitrationAward(scope.row)">生成裁决书</el-button>
|
|
|
49
|
+ <el-button size="mini" type="text" @click="servicearBitration(scope.row)">仲裁文书送达</el-button>
|
|
49
|
50
|
<el-button size="mini" type="text" @click="archive(scope.row)">归档</el-button>
|
|
50
|
|
- <el-button size="mini" type="text">仲裁文书送达</el-button>
|
|
51
|
51
|
</template>
|
|
52
|
52
|
</el-table-column>
|
|
53
|
53
|
</el-table>
|
|
|
@@ -55,7 +55,7 @@
|
|
55
|
55
|
@pagination="getList(queryParams)"
|
|
56
|
56
|
/>
|
|
57
|
57
|
<!-- 缴费 -->
|
|
58
|
|
- <batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay"></batchPayment>
|
|
|
58
|
+ <batchPayment :caseVisablePay="caseVisablePay" @cancelCasePay="cancelCasePay" :batchPaymentValue="batchPaymentValue"></batchPayment>
|
|
59
|
59
|
<!-- 缴费确认 -->
|
|
60
|
60
|
<paymentConfirmation :caseVisablePayment="caseVisablePayment" @cancelCasePayment="cancelCasePayment"></paymentConfirmation>
|
|
61
|
61
|
<!-- 组庭审核 -->
|
|
|
@@ -70,14 +70,16 @@
|
|
70
|
70
|
<batchSignature :caseVisableSignature="caseVisableSignature" @cancelCaseSignature="cancelCaseSignature"></batchSignature>
|
|
71
|
71
|
<!-- 用印 -->
|
|
72
|
72
|
<batchPrinting :caseVisablePrinting="caseVisablePrinting" @cancelCasePrinting="cancelCasePrinting"></batchPrinting>
|
|
73
|
|
-
|
|
74
|
|
-
|
|
75
|
|
-
|
|
|
73
|
+ <!-- 立案审查 -->
|
|
|
74
|
+ <filingReview :caseVisableReviewF="caseVisableReviewF" @cancelCaseReviewF="cancelCaseReviewF" :filingFeviewbatchNumber="filingFeviewbatchNumber" :queryParams="queryParams" @getList="getList"></filingReview>
|
|
|
75
|
+ <!-- 秘书审核仲裁文书 -->
|
|
|
76
|
+ <arbitratorsDocuments :caseVisableSecretary="caseVisableSecretary" @cancelCaseSecretary="cancelCaseSecretary"></arbitratorsDocuments>
|
|
|
77
|
+ <!-- 仲裁员审核仲裁文书 -->
|
|
|
78
|
+ <arbitratorsvVerify :caseVisablearBitration="caseVisablearBitration" @cancelCaseBitration="cancelCaseBitration"></arbitratorsvVerify>
|
|
76
|
79
|
</div>
|
|
77
|
80
|
</template>
|
|
78
|
81
|
|
|
79
|
82
|
<script>
|
|
80
|
|
-import {caseNumRuleList,deleteCaseNumRule} from '@/api/officialSeal/officialSeal.js'
|
|
81
|
83
|
import {listBatch,submitCaseApplicationBatch} from '@/api/batchManagement/batchManagement.js'
|
|
82
|
84
|
import batchPayment from './components/batchPayment.vue'
|
|
83
|
85
|
import paymentConfirmation from './components/paymentConfirmation.vue'
|
|
|
@@ -87,6 +89,9 @@ import courtConfirmation from './components/courtConfirmation.vue'
|
|
87
|
89
|
import reviewArbitrationMethod from './components/reviewArbitrationMethod.vue'
|
|
88
|
90
|
import batchSignature from './components/batchSignature.vue'
|
|
89
|
91
|
import batchPrinting from './components/batchPrinting.vue'
|
|
|
92
|
+import filingReview from './components/filingReview.vue'
|
|
|
93
|
+import arbitratorsDocuments from './components/arbitratorsDocuments.vue'
|
|
|
94
|
+import arbitratorsvVerify from './components/arbitratorsvVerify.vue'
|
|
90
|
95
|
export default {
|
|
91
|
96
|
components: {
|
|
92
|
97
|
batchPayment,
|
|
|
@@ -96,7 +101,10 @@ export default {
|
|
96
|
101
|
courtConfirmation,
|
|
97
|
102
|
reviewArbitrationMethod,
|
|
98
|
103
|
batchSignature,
|
|
99
|
|
- batchPrinting
|
|
|
104
|
+ batchPrinting,
|
|
|
105
|
+ filingReview,
|
|
|
106
|
+ arbitratorsDocuments,
|
|
|
107
|
+ arbitratorsvVerify
|
|
100
|
108
|
|
|
101
|
109
|
},
|
|
102
|
110
|
data() {
|
|
|
@@ -109,6 +117,8 @@ export default {
|
|
109
|
117
|
loading: false,
|
|
110
|
118
|
// 总条数
|
|
111
|
119
|
total: 0,
|
|
|
120
|
+ filingFeviewbatchNumber:'',
|
|
|
121
|
+ batchPaymentValue:{},
|
|
112
|
122
|
caseVisablePay: false,//批量缴费弹窗
|
|
113
|
123
|
caseVisablePayment:false,//批量缴费确认
|
|
114
|
124
|
caseVisableReview:false,//批量组庭审核
|
|
|
@@ -117,6 +127,9 @@ export default {
|
|
117
|
127
|
caseVisableReviewl:false,//批量审核仲裁方式
|
|
118
|
128
|
caseVisableSignature:false,//批量签名
|
|
119
|
129
|
caseVisablePrinting:false,//批量用印
|
|
|
130
|
+ caseVisableReviewF:false, //批量立案审查
|
|
|
131
|
+ caseVisableSecretary:false,//秘书审核文书
|
|
|
132
|
+ caseVisablearBitration:false,//仲裁员核查文书
|
|
120
|
133
|
dataList: [],
|
|
121
|
134
|
editData:{}
|
|
122
|
135
|
};
|
|
|
@@ -161,15 +174,17 @@ export default {
|
|
161
|
174
|
})
|
|
162
|
175
|
},
|
|
163
|
176
|
// 批量立案审查
|
|
164
|
|
- filingFeview(){
|
|
165
|
|
- this.$modal.confirm("你确定要批量立案审查吗?").then((res) => {
|
|
166
|
|
- // this.deleteSealFn({ id: row.id })
|
|
167
|
|
- }).catch(() =>{
|
|
168
|
|
-
|
|
169
|
|
- })
|
|
|
177
|
+ filingFeview(row){
|
|
|
178
|
+ this.filingFeviewbatchNumber = row.batchNumber
|
|
|
179
|
+ this.caseVisableReviewF = true
|
|
|
180
|
+ },
|
|
|
181
|
+ cancelCaseReviewF(){
|
|
|
182
|
+ this.caseVisableReviewF = false
|
|
170
|
183
|
},
|
|
171
|
184
|
// 批量缴费
|
|
172
|
|
- batchPayments(){
|
|
|
185
|
+ batchPayments(row){
|
|
|
186
|
+ this.batchPaymentValue = row
|
|
|
187
|
+ console.log(row)
|
|
173
|
188
|
this.caseVisablePay = true
|
|
174
|
189
|
},
|
|
175
|
190
|
cancelCasePay(){
|
|
|
@@ -239,7 +254,38 @@ export default {
|
|
239
|
254
|
},
|
|
240
|
255
|
cancelCasePrinting(){
|
|
241
|
256
|
this.caseVisablePrinting = false
|
|
|
257
|
+ },
|
|
|
258
|
+ // 生成裁决书
|
|
|
259
|
+ arbitrationAward(){
|
|
|
260
|
+ this.$modal.confirm("你确定要批量生成裁决书吗?").then((res) => {
|
|
|
261
|
+ // this.deleteSealFn({ id: row.id })
|
|
|
262
|
+ }).catch(() =>{
|
|
|
263
|
+
|
|
|
264
|
+ })
|
|
|
265
|
+ },
|
|
|
266
|
+ //仲裁文书送达
|
|
|
267
|
+ servicearBitration(){
|
|
|
268
|
+ this.$modal.confirm("你确定要批量仲裁文书批量送达吗?").then((res) => {
|
|
|
269
|
+ // this.deleteSealFn({ id: row.id })
|
|
|
270
|
+ }).catch(() =>{
|
|
|
271
|
+
|
|
|
272
|
+ })
|
|
|
273
|
+ },
|
|
|
274
|
+ // 秘书审核仲裁文书
|
|
|
275
|
+ secretaryArbitration(){
|
|
|
276
|
+ this.caseVisableSecretary = true
|
|
|
277
|
+ },
|
|
|
278
|
+ cancelCaseSecretary(){
|
|
|
279
|
+ this.caseVisableSecretary = false
|
|
|
280
|
+ },
|
|
|
281
|
+ // 仲裁员审核文书
|
|
|
282
|
+ arbitratorsVerify(){
|
|
|
283
|
+ this.caseVisablearBitration = true
|
|
|
284
|
+ },
|
|
|
285
|
+ cancelCaseBitration(){
|
|
|
286
|
+ this.caseVisablearBitration = false
|
|
242
|
287
|
}
|
|
|
288
|
+
|
|
243
|
289
|
},
|
|
244
|
290
|
};
|
|
245
|
291
|
</script>
|