Authored by 黄敬囿

优化有赚分享review by 李奇

# Windows
[Dd]esktop.ini
Thumbs.db
$RECYCLE.BIN/
# macOS
.DS_Store
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
# Node.js
node_modules/
... ...
... ... @@ -16,7 +16,7 @@ export function getQRCodeSource(code) {
}).then(data => {
if (data.code === 200) {
if (data.data) {
let resultJson = JSON.parse(result.data);
let resultJson = JSON.parse(data.data);
if (resultJson) {
let app = getApp();
let yas = new Yas(app);
... ...