This commit is contained in:
Your Name
2023-11-24 13:46:45 +08:00
12 changed files with 484 additions and 119 deletions
+9 -2
View File
@@ -56,6 +56,8 @@
v-hasPermi="['caseManagement:list:check']">案件批量立案审查</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(4)"
v-hasPermi="['caseManagement:list:Batchgeneration']">批量生成裁决书</el-button>
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(6)"
v-hasPermi="['caseManagement:list:pay']">批量缴费</el-button>
</el-col>
</el-row>
<el-table v-loading="loading" :data="dataList" style="width: 100%">
@@ -413,9 +415,12 @@ export default {
} else if (type == 2) {
this.operateTitle = '批量立案审查';
this.operateStatus = 2;
}else if(type == 4){
} else if (type == 4) {
this.operateTitle = '批量生成裁决书';
this.operateStatus = 4;
} else if(type == 6){
this.operateTitle = '批量缴费';
this.operateStatus = 6;
}
},
// 修改开庭时间
@@ -815,4 +820,6 @@ export default {
};
</script>
<style lang="scss" scoped>#formContainer {}</style>
<style lang="scss" scoped>
#formContainer {}
</style>