bug修复

This commit is contained in:
tx 2024-09-11 18:06:45 +08:00
parent 13dbe41a76
commit 53d2036584
5 changed files with 635 additions and 569 deletions

View File

@ -5,11 +5,11 @@ const install = (Vue, vm) => {
Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://61.174.243.28:15861',
// baseUrl: 'http://192.168.2.46:8080',
baseUrl: 'https://che.chuangtewl.com/prod-api',
// baseUrl: 'https://che.chuangtewl.com/prod-api',
// 测试环境
// baseUrl: 'https://dianche.chuantewulian.cn/prod-api',
// 俞山岛
// baseUrl: 'https://dche.ccttiot.com/prod-api',
baseUrl: 'https://dche.ccttiot.com/prod-api',
// 创特
loadingText: '努力加载中~',
loadingTime: 10000,
@ -70,35 +70,35 @@ const install = (Vue, vm) => {
// })
// // return res.result;
// }
if (res.code == 401) {
wx.login({
success(res) {
if (res.code) {
console.log('登录!', res);
let areaId = uni.getStorageSync('areaId');
if (areaId) {
vm.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' + areaId).then(
res => {
uni.hideLoading();
if (res.code == 200) {
uni.setStorageSync('token', res.token);
} else if (res.code == 501) {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
} else {
uni.navigateTo({
url: '/pages/login/login'
})
}
});
}
}
},
});
}
// if (res.code == 401) {
// wx.login({
// success(res) {
// if (res.code) {
// // console.log('登录!', res);
// let areaId = uni.getStorageSync('areaId');
// if (areaId) {
// vm.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' + areaId).then(
// res => {
// uni.hideLoading();
// if (res.code == 200) {
// uni.setStorageSync('token', res.token);
// } else if (res.code == 501) {
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
// } else {
// uni.navigateTo({
// url: '/pages/login/login'
// })
// }
// });
// }
// }
// },
// });
// }
return res;
}

View File

@ -21,7 +21,7 @@ import'./common/css/iconfont.css'
let mpShare = require('uview-ui/libs/mixin/mpShare.js');
Vue.mixin(mpShare);
// import tabbar from '@/pages_admin/components/tab-bar/tab-bar.vue';
// import tabbar from '@/components/tab-bar/tab-bar.vue';
// import customizeAnswer from'@/components/customizeAnswer/customizeAnswer.vue'
// Vue.use('customizeAnswer',customizeAnswer)

File diff suppressed because it is too large Load Diff

View File

@ -244,10 +244,16 @@
codeButtonText2: '获取验证码',
countdown2: 60,
openCode:null,
isindex:false
}
},
onLoad() {
onLoad(e) {
this.deptId = uni.getStorageSync('deptId');
if(e.isindex=='true'){
this.isindex=true
}
// this.deptId = 101
},
computed: {
@ -639,9 +645,16 @@
async ceshi() {
this.$u.get("/getAppInfo").then((res) => {
console.log('进入跳转');
uni.navigateTo({
url: '/pages/index/index'
})
if(this.isindex==true){
uni.navigateBack({
delta: 1 // delta1
});
}else{
uni.navigateTo({
url: '/pages/index/index'
})
}
});
},
}

View File

@ -586,52 +586,70 @@
// })
// }
} else {
uni.redirectTo({
url: '/pages/login/login'
});
// let areaId = uni.getStorageSync('areaId');
// if (areaId) {
// let areaId = uni.getStorageSync('areaId');
// if (areaId) {
// let that = this;
// wx.login({
// success(res) {
// if (res.code) {
// console.log('111', res);
// let data = {
// wxOpenId: res.code,
// };
// let areaId = uni.getStorageSync('areaId');
// //
// uni.showModal({
// title: '',
// content: '使',
// success(modalRes) {
// if (modalRes.confirm) {
// console.log('');
// //
// that.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' + areaId)
// .then(res => {
// uni.hideLoading();
// if (res.code == 200) {
// uni.setStorageSync('token', res.token);
// that.getuserInfo();
// } else if (res.code == 501) {
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
// } else {
// uni.redirectTo({
// url: '/pages/login/login'
// });
// }
// });
// } else if (modalRes.cancel) {
// console.log('');
// uni.redirectTo({
// url: '/pages/login/login'
// });
// //
// }
// }
// });
// }
// }
// });
// }
let areaId = uni.getStorageSync('areaId');
if (areaId) {
let that = this
wx.login({
success(res) {
if (res.code) {
console.log('登录!', res);
let data = {
wxOpenId: res.code,
};
let areaId = uni.getStorageSync('areaId');
that.$u.post('/loginByopenid?jsCode=' + res.code + '&areaId=' +
areaId).then(
res => {
uni.hideLoading();
if (res.code == 200) {
uni.setStorageSync('token', res.token);
that.getuserInfo()
} else if (res.code == 501) {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
} else {
// console.log("",res.data)
uni.redirectTo({
url: '/pages/login/login'
})
}
});
}
},
});
} else {
uni.showToast({
title: '请授权位置信息后再尝试',
icon: 'none',
duration: 4000
});
}
// } else {
// uni.showToast({
// title: '',
// icon: 'none',
// duration: 4000
// });
// }
}
});