修复 网络不通的情况下登录卡死的问题
This commit is contained in:
parent
005ae548a8
commit
da02e25fd1
@ -138,16 +138,30 @@ export default {
|
|||||||
// console.log(this.$u.trim(this.zhanghaoA));
|
// console.log(this.$u.trim(this.zhanghaoA));
|
||||||
},
|
},
|
||||||
logins() {
|
logins() {
|
||||||
|
// 检查网络
|
||||||
|
uni.getNetworkType({
|
||||||
|
success: function (res) {
|
||||||
|
console.log(res.networkType);
|
||||||
|
if (res.networkType == 'none') {
|
||||||
|
this.$refs.uToast.show({
|
||||||
|
title: '网络似乎断开了,请检查网络后重试',
|
||||||
|
type: 'error'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// 判断是否可以点击
|
// 判断是否可以点击
|
||||||
// console.log(this.zhanghao);
|
// console.log(this.zhanghao);
|
||||||
if(this.clickstate==false){
|
if(this.clickstate==false){
|
||||||
this.clickstate=true
|
this.clickstate=true
|
||||||
}else{
|
}else{
|
||||||
this.$refs.uToast.show({
|
// 此验证存在逻辑问题,会出现卡死在这里的情况
|
||||||
title: "不能重复提交",
|
// this.$refs.uToast.show({
|
||||||
type: 'error'
|
// title: "不能重复提交",
|
||||||
});
|
// type: 'error'
|
||||||
return
|
// });
|
||||||
|
// return
|
||||||
}
|
}
|
||||||
// 清除本地存储才可以正常登陆(具体原因没有仔细检查)
|
// 清除本地存储才可以正常登陆(具体原因没有仔细检查)
|
||||||
// uni.clearStorage();
|
// uni.clearStorage();
|
||||||
|
Loading…
Reference in New Issue
Block a user