This commit is contained in:
xiezhijun
2021-04-10 18:10:51 +08:00
4 changed files with 66 additions and 36 deletions

View File

@ -74,7 +74,9 @@ export default {
},
methods: {
handleOnHide() {
this.$emit("onConfirm", { remark: this.nData });
if (this.nData !== null && this.nData !== undefined) {
this.$emit("onConfirm", { remark: this.nData });
}
},
},
};