This commit is contained in:
2020-12-10 19:02:41 +00:00
parent b94f7b9072
commit 417fbac239

View File

@@ -118,6 +118,7 @@ export default {
} }
}, },
open(dls) { open(dls) {
this.errorObj = [];
this.dataListSelection = dls; this.dataListSelection = dls;
this.isVisible = true; this.isVisible = true;
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
@@ -127,6 +128,7 @@ export default {
}, },
close(ret) { close(ret) {
this.isVisible = false; this.isVisible = false;
this.errorObj = [];
this.resolve(ret); this.resolve(ret);
} }
} }