公章,批量缴费

This commit is contained in:
fz
2023-11-23 20:07:01 +08:00
parent f512868759
commit 68d600c0e5
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%">
@@ -390,9 +392,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;
}
},
// 修改开庭时间
@@ -737,4 +742,6 @@ export default {
};
</script>
<style lang="scss" scoped>#formContainer {}</style>
<style lang="scss" scoped>
#formContainer {}
</style>