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.

72 lines
2.0 KiB

12 months ago
import { ROOTPATH as baseUrl } from "@/common/config.js"
// 这里的Vue为Vue对象(非创建出来的实例)vm为main.js中“Vue.use(httpInterceptor, app)”这一句的第二个参数,
// 为一个Vue的实例也即每个页面的"this"
// 如果需要了解这个install方法是什么请移步https://uviewui.com/components/vueUse.html
const install = (Vue, vm) => {
// 此为自定义配置参数,具体参数见上方说明
Vue.prototype.$u.http.setConfig({
baseUrl,
11 months ago
showLoading: true, // 是否显示请求中的loading
loadingMask: true, // 展示loading的时候是否给一个透明的蒙层防止触摸穿透
loadingText: '加载中', // 请求loading中的文字提示
loadingTime: 2000,
12 months ago
originalData: true, // 是否在拦截器中返回服务端的原始数据
// 设置自定义头部content-type
header: {
'content-type': 'application/json;charset=UTF-8'
}
});
// 请求拦截部分,如配置,每次请求前都会执行
Vue.prototype.$u.http.interceptor.request = (config) => {
11 months ago
// 引用token
let token = vm.vuex_token ? vm.vuex_token : uni.getStorageSync('lifeData')?.vuex_token;
if (token) {
config.header['Authorization'] = `Bearer ${token}`;
12 months ago
}
return config;
}
// 响应拦截,如配置,每次请求结束都会执行本方法
Vue.prototype.$u.http.interceptor.response = (res) => {
if (res.statusCode === 200) {
if (res.data.hasOwnProperty("errcode")) {
11 months ago
if (res.data.errcode === 40001) {
Vue.prototype.$u.debounce(() => {
uni.showToast({
icon: "none",
title: "登陆过期,请重新登录"
})
setTimeout(() => {
uni.redirectTo({
7 months ago
// url: '/package_sub/login/login'
11 months ago
})
}, 1500)
})
12 months ago
} else {
uni.showToast({
icon: "none",
11 months ago
title: res.data.errmsg||"系统错误"
12 months ago
})
11 months ago
return false
12 months ago
}
11 months ago
} else
12 months ago
return res.data;
11 months ago
12 months ago
} else {
11 months ago
uni.showToast({
icon: "fail",
title: "系统错误"
})
12 months ago
return false;
}
}
}
export default {
install
}