commit
f70b85a2ed
@ -163,6 +163,8 @@ export default {
|
|||||||
type: null,
|
type: null,
|
||||||
reviewStatus: "yes",
|
reviewStatus: "yes",
|
||||||
};
|
};
|
||||||
|
this.dishesList = [];
|
||||||
|
this.lockType = false;
|
||||||
},
|
},
|
||||||
handleCurrentChange(data) {
|
handleCurrentChange(data) {
|
||||||
this.$emit("onChange", data);
|
this.$emit("onChange", data);
|
||||||
|
@ -102,8 +102,8 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
handleOnClosed(done) {
|
handleOnClosed(done) {
|
||||||
this.$refs.dishesRef.clean();
|
|
||||||
done();
|
done();
|
||||||
|
this.handleOnCancelClick();
|
||||||
},
|
},
|
||||||
handleCurrentChange(data) {
|
handleCurrentChange(data) {
|
||||||
if (!data) {
|
if (!data) {
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog>
|
||||||
|
</el-dialog>
|
||||||
|
</template>
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ReuseDialog',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visible: false,
|
||||||
|
data: undefined
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
showDialog() {
|
||||||
|
this.visible = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
Loading…
x
Reference in New Issue
Block a user