@@ -184,10 +169,10 @@ export default {
computed: {
maskDialog: {
get() {
- return this.findAddressListDialog || this.moreOptionDialog || this.outWebImgAccountDialog
+ return this.findAddressListDialog || this.outWebImgAccountDialog
},
set() {
- this.findAddressListDialog = this.moreOptionDialog = this.outWebImgAccountDialog = false
+ this.findAddressListDialog = this.outWebImgAccountDialog = false
}
}
},
diff --git a/src/store/index.js b/src/store/index.js
index 1b5b56f..1dba597 100644
--- a/src/store/index.js
+++ b/src/store/index.js
@@ -30,7 +30,9 @@ const store = Vuex.createStore({
},
setMaskDialog(store, val) {
store.maskDialog = val.state
- store.maskDialogMode = val.mode
+ if (val.mode){
+ store.maskDialogMode = val.mode
+ }
}
}
})