页面整合

This commit is contained in:
Your Name
2023-09-18 21:55:43 +08:00
parent 2ad5d40134
commit 5a01836bbf
15 changed files with 2219 additions and 4 deletions
@@ -0,0 +1,37 @@
<template>
<div>
<el-dialog
title="书面审理"
:visible="showadjudicaterecord"
width="500px"
@close="cancel"
:destroy-on-close="true"
>
书面审理弹框
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">提 交</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
export default {
props: ["showadjudicaterecord"],
data() {
return {
// key: value
};
},
methods: {
submitForm() {},
cancel() {
this.$emit("canceladjudicaterecord");
},
},
};
</script>
<style lang="scss" scoped>
</style>