批量列表开发

This commit is contained in:
gyj
2023-12-29 17:26:45 +08:00
parent 4a3c470cf9
commit 6cd4f2843c
10 changed files with 910 additions and 98 deletions
@@ -0,0 +1,43 @@
<template>
<div>
<!-- 批量审核仲裁方式 -->
<el-dialog title="批量审核仲裁方式" :visible="caseVisableReviewl" @close="cancel" width="600px" 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: ["caseVisableReviewl","queryParams"],
data() {
return {
};
},
watch: {
caseVisableReviewl(val) {
if (val) {
}
}
},
created() {
},
methods: {
cancel() {
this.$emit("cancelCaseReviewl");
},
},
};
</script>
<style lang="scss" scoped>
::v-deep .el-dialog {
background: #ffffff;
border-radius: 20px;
}</style>