This commit is contained in:
huangdeliang
2021-04-10 09:05:05 +08:00
parent 39ad0f1b86
commit f28f009086
3 changed files with 37 additions and 24 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 });
}
},
},
};