Showing
2 changed files
with
15 additions
and
1 deletions
app/.gitignore
0 → 100644
@@ -16,7 +16,7 @@ export function getQRCodeSource(code) { | @@ -16,7 +16,7 @@ export function getQRCodeSource(code) { | ||
16 | }).then(data => { | 16 | }).then(data => { |
17 | if (data.code === 200) { | 17 | if (data.code === 200) { |
18 | if (data.data) { | 18 | if (data.data) { |
19 | - let resultJson = JSON.parse(result.data); | 19 | + let resultJson = JSON.parse(data.data); |
20 | if (resultJson) { | 20 | if (resultJson) { |
21 | let app = getApp(); | 21 | let app = getApp(); |
22 | let yas = new Yas(app); | 22 | let yas = new Yas(app); |
-
Please register or login to post a comment