页面整合
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user