!198 调整食谱界面

Merge pull request !198 from 德仔/recipes_show
This commit is contained in:
德仔
2021-04-10 16:22:00 +08:00
committed by Gitee
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 });
}
},
},
};