连云港陪玩陪聊
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.
chunwan/api/request.js

53 lines
1.2 KiB

2 months ago
import Vue from 'vue'
2 months ago
let baseUrl = 'https://api.lyiyuan.cn';
2 months ago
Vue.prototype.$baseUrl = baseUrl;
export function request(prams) {
return new Promise((resolve, reject) => {
2 months ago
let url = baseUrl+"/prod-api/"+prams.url;
2 months ago
uni.request({
2 months ago
url,
2 months ago
data: prams.data,
method: prams.method,
2 months ago
header: {
2 months ago
"token": uni.getStorageSync("userInfo").token,
"Content-type": "application/json",
2 months ago
"deviceSn": uni.getStorageSync("deviceSn"),
2 months ago
},
success: (res) => {
1 month ago
if (res.data.code == 200 || res.data.code == -1){
1 month ago
console.log(prams)
console.log("返回结果:"+JSON.stringify(res.data))
2 months ago
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('请求完成')
}
});
})
}