You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
import Vue from 'vue'
|
|
let baseUrl = 'https://api.lyiyuan.cn';
|
|
Vue.prototype.$baseUrl = baseUrl;
|
|
|
|
export function request(prams) {
|
|
return new Promise((resolve, reject) => {
|
|
let url = baseUrl+"/prod-api/"+prams.url;
|
|
console.log(url,prams)
|
|
uni.request({
|
|
url,
|
|
data: prams.data,
|
|
method: prams.method,
|
|
header: {
|
|
"token": uni.getStorageSync("userInfo").token,
|
|
"Content-type": "application/json",
|
|
"deviceSn": uni.getStorageSync("deviceSn"),
|
|
},
|
|
success: (res) => {
|
|
if (res.data.code == 200){
|
|
resolve(res.data);
|
|
}else if(res.data.code == 401){
|
|
uni.showModal({
|
|
title: "温馨提示",
|
|
content: "当前账号已过期,是否重新登录",
|
|
confirmColor: "#05754D",
|
|
success(res) {
|
|
uni.removeStorageSync("userInfo")
|
|
uni.navigateTo({
|
|
url: "/pages/login/login"
|
|
})
|
|
}
|
|
})
|
|
} else {
|
|
reject(res.data);
|
|
uni.showToast({
|
|
icon: "none",
|
|
title: res.data.msg,
|
|
duration: 3000
|
|
});
|
|
}
|
|
|
|
},
|
|
fail: (err) => {
|
|
reject(err);
|
|
},
|
|
complete: () => {
|
|
//console.log('请求完成')
|
|
}
|
|
});
|
|
})
|
|
}
|
|
|