We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9705abd commit 10f428cCopy full SHA for 10f428c
Front/package.json
@@ -58,6 +58,9 @@
58
"webpack-dev-server": "^3.1.11",
59
"webpack-merge": "^4.1.0"
60
},
61
+ "optionalDependencies": {
62
+ "fsevents": "*"
63
+ },
64
"engines": {
65
"node": ">= 6.0.0",
66
"npm": ">= 3.0.0"
Front/src/web/user/userLoginWx.vue
@@ -53,9 +53,9 @@ export default {
53
return;
54
}
55
while (statusRaw.data.code === -1) {
56
- statusRaw = await this.getStatusRaw();
57
// like Sleep(500ms)
await new Promise(resolve => setTimeout(resolve, 500));
+ statusRaw = await this.getStatusRaw();
if (statusRaw.data.code === 1) {
const response = statusRaw.data;
0 commit comments