登录时检查网络连接是否正常
This commit is contained in:
parent
02d289b31d
commit
99ab0696ba
@ -79,7 +79,7 @@ export default {
|
||||
phone: "",
|
||||
code: "",
|
||||
state:0,
|
||||
clickstate:false,
|
||||
// clickstate:false,
|
||||
// 时间
|
||||
timer: null,
|
||||
is_sendcode: false, // 60s
|
||||
@ -138,9 +138,10 @@ export default {
|
||||
// console.log(this.$u.trim(this.zhanghaoA));
|
||||
},
|
||||
logins() {
|
||||
|
||||
// 检查网络
|
||||
uni.getNetworkType({
|
||||
success: function (res) {
|
||||
success: (res) => {
|
||||
console.log(res.networkType);
|
||||
if (res.networkType == 'none') {
|
||||
this.$refs.uToast.show({
|
||||
@ -149,26 +150,21 @@ export default {
|
||||
});
|
||||
}
|
||||
},
|
||||
fail: function () {
|
||||
this.$refs.uToast.show({
|
||||
title: '网络似乎断开了,请检查网络后重试!',
|
||||
type: 'error'
|
||||
});
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
// 判断是否可以点击
|
||||
// console.log(this.zhanghao);
|
||||
if(this.clickstate==false){
|
||||
this.clickstate=true
|
||||
}else{
|
||||
// if(this.clickstate==false){
|
||||
// this.clickstate=true
|
||||
// }else{
|
||||
// 此验证存在逻辑问题,会出现卡死在这里的情况
|
||||
// this.$refs.uToast.show({
|
||||
// title: "不能重复提交",
|
||||
// type: 'error'
|
||||
// });
|
||||
// return
|
||||
}
|
||||
// }
|
||||
// 清除本地存储才可以正常登陆(具体原因没有仔细检查)
|
||||
// uni.clearStorage();
|
||||
// 账号登录1达人0商家
|
||||
@ -177,7 +173,7 @@ export default {
|
||||
console.log(JSON.stringify(res))
|
||||
if (res.errCode != 0) {
|
||||
// 恢复按钮可点击状态
|
||||
this.clickstate=false
|
||||
// this.clickstate=false
|
||||
this.$refs.uToast.show({
|
||||
title: res.message,
|
||||
type: 'error'
|
||||
@ -228,7 +224,7 @@ export default {
|
||||
console.log(JSON.stringify(res))
|
||||
if (res.errCode != 0) {
|
||||
// 恢复按钮可点击状态
|
||||
this.clickstate=false
|
||||
// this.clickstate=false
|
||||
this.$refs.uToast.show({
|
||||
title: res.message,
|
||||
type: 'error'
|
||||
|
Loading…
Reference in New Issue
Block a user