|
|
@@ -40,14 +40,13 @@
|
|
40
|
40
|
<el-button size="mini" type="text" icon="el-icon-check" @click="courtReviews(scope.row)" v-if="scope.row.caseStatusstr == '5' && checkPermi(['batchManagement:list:checkgroup'])">组庭审核</el-button>
|
|
41
|
41
|
<el-button size="mini" type="text" icon="el-icon-sort" @click="courtConfirmations(scope.row)" v-if="scope.row.caseStatusstr == '6' && checkPermi(['batchManagement:list:confirmgroup'])">组庭确认</el-button>
|
|
42
|
42
|
<el-button size="mini" type="text" @click="reviewArbitrations(scope.row)" v-if="scope.row.caseStatusstr == '7' && checkPermi(['batchManagement:list:checkarbitrationway'])">审核仲裁方式</el-button>
|
|
43
|
|
- <!-- <el-button size="mini" type="text" @click="batchWrittenReviewy(scope.row)" v-if="scope.row.caseStatusstr == '9' && checkPermi(['batchManagement:list:hear'])">书面审理</el-button> -->
|
|
44
|
|
- <el-button size="mini" type="text" @click="batchWrittenReviewy(scope.row)">书面审理</el-button>
|
|
|
43
|
+ <el-button size="mini" type="text" @click="batchWrittenReviewy(scope.row)" v-if="scope.row.caseStatusstr == '9' && checkPermi(['batchManagement:list:hear'])">书面审理</el-button>
|
|
|
44
|
+ <!-- <el-button size="mini" type="text" @click="batchWrittenReviewy(scope.row)">书面审理</el-button> -->
|
|
45
|
45
|
<el-button size="mini" type="text" @click="secretaryArbitration(scope.row)" v-if="scope.row.caseStatusstr == '11' && checkPermi(['batchManagement:list:secretarycheck'])">秘书确认</el-button>
|
|
46
|
46
|
<el-button size="mini" type="text" @click="arbitratorsVerify(scope.row)" v-if="scope.row.caseStatusstr == '18' && checkPermi(['batchManagement:list:arbitratorConfirm'])">仲裁员确认</el-button>
|
|
47
|
47
|
<el-button size="mini" type="text" @click="departmentDocuments(scope.row)" v-if="scope.row.caseStatusstr == '12' && checkPermi(['batchManagement:list:confirmaward'])">部门长确认</el-button>
|
|
48
|
48
|
<el-button size="mini" type="text" @click="batchSignatures(scope.row)" v-if="scope.row.caseStatusstr == '13' && checkPermi(['batchManagement:list:sign'])">签名</el-button>
|
|
49
|
49
|
<el-button size="mini" type="text" @click="batchPrintings(scope.row)" v-if="scope.row.caseStatusstr == '14' && checkPermi(['batchManagement:list:signprint'])">用印</el-button>
|
|
50
|
|
- <!-- <el-button size="mini" type="text" @click="arbitrationAward(scope.row)">生成裁决书</el-button> -->
|
|
51
|
50
|
<el-button size="mini" type="text" @click="servicearBitration(scope.row)" v-if="scope.row.caseStatusstr == '15' && checkPermi(['batchManagement:list:sendaward'])">送达裁决书</el-button>
|
|
52
|
51
|
<el-button size="mini" type="text" @click="archive(scope.row)" v-if="scope.row.caseStatusstr == '16' && checkPermi(['batchManagement:list:file'])">案件归档</el-button>
|
|
53
|
52
|
</template>
|
|
|
@@ -84,7 +83,10 @@
|
|
84
|
83
|
</template>
|
|
85
|
84
|
|
|
86
|
85
|
<script>
|
|
87
|
|
-import {listBatch,submitCaseApplicationBatch,payListBatch,writtenHearBatch,caseFileBatch,serviceBatch} from '@/api/batchManagement/batchManagement.js'
|
|
|
86
|
+import {listBatch,submitCaseApplicationBatch,
|
|
|
87
|
+payListBatch,writtenHearBatch,
|
|
|
88
|
+caseFileBatch,serviceBatch,getSignUrlBatch
|
|
|
89
|
+} from '@/api/batchManagement/batchManagement.js'
|
|
88
|
90
|
import { listDept } from "@/api/system/dept";
|
|
89
|
91
|
import batchPayment from './components/batchPayment.vue'
|
|
90
|
92
|
import paymentConfirmation from './components/paymentConfirmation.vue'
|
|
|
@@ -281,7 +283,7 @@ export default {
|
|
281
|
283
|
},
|
|
282
|
284
|
// 批量书面审理
|
|
283
|
285
|
batchWrittenReviewy(row){
|
|
284
|
|
- this.$modal.confirm("你确定要批量书面审理吗1?").then(res => {
|
|
|
286
|
+ this.$modal.confirm("你确定要批量书面审理吗?").then(res => {
|
|
285
|
287
|
writtenHearBatch({batchNumber: row.batchNumber}).then(res=>{
|
|
286
|
288
|
this.$modal.msgSuccess("提交成功!");
|
|
287
|
289
|
this.getList(this.queryParams);
|
|
|
@@ -307,6 +309,19 @@ export default {
|
|
307
|
309
|
batchSignatures(row){
|
|
308
|
310
|
this.signatureData = row
|
|
309
|
311
|
this.caseVisableSignature = true
|
|
|
312
|
+ // this.$modal.confirm("你确定要批量签名吗?").then(res => {
|
|
|
313
|
+ // getSignUrlBatch({
|
|
|
314
|
+ // batchNumber: row.batchNumber
|
|
|
315
|
+ // }).then(res=>{
|
|
|
316
|
+ // window.open(res.data.signUrl)
|
|
|
317
|
+ // this.$modal.confirm("你已经批量签名了吗?").then(res => {
|
|
|
318
|
+ // this.$modal.msgSuccess("签名成功!");
|
|
|
319
|
+ // this.getList(this.queryParams);
|
|
|
320
|
+ // })
|
|
|
321
|
+ // })
|
|
|
322
|
+ // }).catch(() =>{
|
|
|
323
|
+
|
|
|
324
|
+ // })
|
|
310
|
325
|
},
|
|
311
|
326
|
cancelCaseSignature(){
|
|
312
|
327
|
this.caseVisableSignature = false
|