登录
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
export default function request(urldata) {
|
||||
const {url, data, method, header,userInfo} = urldata;
|
||||
const baseUrl =
|
||||
"http://192.168.0.218:8086"
|
||||
+url;
|
||||
console.log("``````````````````````````````````",userInfo);
|
||||
const { url, data, method, header, userInfo } = urldata;
|
||||
const baseUrl =
|
||||
"http://192.168.0.218:8086/"
|
||||
+ url;
|
||||
console.log("``````````````````````````````````", userInfo);
|
||||
if (userInfo) {
|
||||
uni.getStorage({
|
||||
key: "userinfo",
|
||||
success: (res) => {
|
||||
if(res.data){
|
||||
if(res.data.nickName){
|
||||
if (res.data) {
|
||||
if (res.data.nickName) {
|
||||
return new Promise((resolve, reject) => {
|
||||
uni.request({
|
||||
url: baseUrl,
|
||||
@@ -24,16 +24,18 @@ export default function request(urldata) {
|
||||
}
|
||||
});
|
||||
});
|
||||
}else{
|
||||
uni.reLaunch({ url: "/pages/UserInformation/UserInformation"})
|
||||
} else {
|
||||
this.$global.lastPage = uni.page.route;
|
||||
uni.reLaunch({ url: "/pages/UserInformation/UserInformation" })
|
||||
}
|
||||
}else{
|
||||
} else {
|
||||
this.$global.lastPage = uni.page.route;
|
||||
uni.navigateTo({ url: '/pages/login/login' })
|
||||
}
|
||||
}
|
||||
});
|
||||
}else{
|
||||
return new Promise((resolve, reject) => {
|
||||
});
|
||||
} else {
|
||||
return new Promise((resolve, reject) => {
|
||||
uni.request({
|
||||
url: baseUrl,
|
||||
data: data,
|
||||
|
||||
Reference in New Issue
Block a user