小程序登录优化

This commit is contained in:
devil_gong 2019-11-26 16:19:24 +08:00
parent 7a4007cb11
commit 5d080401f6
6 changed files with 22 additions and 11 deletions

View File

@ -60,8 +60,9 @@ Page({
}, 2000);
} else {
this.setData({form_submit_loading: false});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {

View File

@ -76,8 +76,9 @@ Page({
this.setData({
data_list_loding_status: 0
});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {

View File

@ -75,8 +75,9 @@ Page({
this.setData({
data_list_loding_status: 0
});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {

View File

@ -42,7 +42,10 @@ Page({
goods_score: res.data.data || null,
});
} else {
app.showToast(res.data.msg);
if(res.data.code != -400)
{
app.showToast(res.data.msg);
}
}
},
fail: () => {
@ -125,8 +128,9 @@ Page({
this.setData({
data_list_loding_status: 0
});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {

View File

@ -77,7 +77,9 @@ Page({
data_bottom_line_status: false,
data_list_loding_msg: res.data.msg,
});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {

View File

@ -166,7 +166,9 @@ Page({
data_bottom_line_status: false,
data_list_loding_msg: res.data.msg,
});
app.showToast(res.data.msg);
if (app.is_login_check(res.data)) {
app.showToast(res.data.msg);
}
}
},
fail: () => {