fix error message dialog can be shown multi times

This commit is contained in:
MaysWind
2020-11-22 16:23:56 +08:00
parent 349ea1775a
commit 59cb3ebc6e
+7
View File
@@ -59,10 +59,17 @@ export default {
},
methods: {
unlock() {
const app = this.$f7;
const $$ = app.$;
if (!this.pinCodeValid) {
return;
}
if ($$('.modal-in').length) {
return;
}
const router = this.$f7router;
try {