批量页面开发,接口联调

This commit is contained in:
gyj
2024-01-02 17:57:03 +08:00
parent 6cd4f2843c
commit 7dc3c11f06
6 changed files with 291 additions and 21 deletions
@@ -0,0 +1,44 @@
<template>
<div>
<!-- 仲裁员批量审核 -->
<el-dialog title="仲裁员批量审核" :visible="caseVisablearBitration" destroy-on-close width="30%" @close="cancel" center>
<div slot="footer" class="dialog-footer">
<el-button type="primary" class="endbutton"><span>确认</span></el-button>
<el-button class="endbutton" @click="cancel"><span>取 消</span></el-button>
</div>
</el-dialog>
</div>
</template>
<script>
export default {
props: ["caseVisablearBitration","queryParams"],
dicts: ["manager_type"],
data() {
return {
};
},
watch: {
caseVisablearBitration(val) {
if (val) {
this.ruleForm = {};
}
}
},
created() {
},
methods: {
cancel() {
this.$emit("cancelCaseBitration");
},
},
}
</script>
<style lang="scss" scoped>
::v-deep .el-dialog {
background: #ffffff;
border-radius: 20px;
}
</style>