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.
|
|
const install = (Vue, vm) => { // 请求地址
let baseUrl = vm.API.PRODURL; if(vm.API.DEV == 'dev'){ baseUrl = vm.API.DEVURL; }; // 请求全局配置
Vue.prototype.$u.http.setConfig({ baseUrl: baseUrl, method: 'POST', dataType: 'json', // 返回数据时自动 JSON.parse()
showLoading: true, // 是否显示请求中的loading
loadingText: '正在加载', loadingTime: 800 // 延迟800毫秒时显示加载框
}); // 请求前拦截, 现在不做拦截
Vue.prototype.$u.http.interceptor.request = config => { return true; }; // 响应拦截
Vue.prototype.$u.http.interceptor.response = res => { if(res.code == 0) { return res; } else if(res.code == 201) { console.log("其他状态:", res.code) return false; } else if (res.code == 9999) { uni.navigateTo({ url: '/pages/login/index?type=userinfo' }) return false; } else if (res.code == 9998) { uni.navigateTo({ url: '/pages/login/index?type=phone' }) return false; } else { return false; } }}
export default { install}
|