2019-03-04 15:28:16 +08:00
|
|
|
|
import axios from 'axios'
|
2019-03-25 18:46:51 +08:00
|
|
|
|
import {baseUrl, dataSources} from './env';
|
2019-03-04 15:28:16 +08:00
|
|
|
|
import datas from '../data/data';
|
2019-03-27 19:12:12 +08:00
|
|
|
|
import { getAccessToken } from '../utils/cache.js';
|
2019-03-28 19:19:04 +08:00
|
|
|
|
import { Dialog } from 'vant';
|
2019-03-04 15:28:16 +08:00
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
const service = axios.create({
|
2019-03-04 15:28:16 +08:00
|
|
|
|
baseURL: baseUrl, // api 的 base_url
|
|
|
|
|
timeout: 5000, // request timeout
|
2019-03-27 19:12:12 +08:00
|
|
|
|
headers: {
|
|
|
|
|
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
|
|
|
|
|
}
|
2019-03-04 15:28:16 +08:00
|
|
|
|
});
|
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
const servicef = function (parameter) {
|
|
|
|
|
// debugger;
|
|
|
|
|
if (dataSources == 'local') {
|
2019-03-04 15:28:16 +08:00
|
|
|
|
//定义回调函数和axios一致
|
2019-03-25 18:46:51 +08:00
|
|
|
|
const promist = new Promise(function (resolve, reject) {
|
|
|
|
|
var data = datas[parameter.url];
|
|
|
|
|
if (typeof data == 'string') {
|
|
|
|
|
data = JSON.parse(data);
|
|
|
|
|
}
|
|
|
|
|
resolve(data);
|
2019-03-04 15:28:16 +08:00
|
|
|
|
})
|
|
|
|
|
return promist;
|
|
|
|
|
}
|
2019-03-27 19:12:12 +08:00
|
|
|
|
// 设置 access token
|
|
|
|
|
// debugger;
|
|
|
|
|
// if (getAccessToken()) {
|
|
|
|
|
// parameter.headers = {
|
|
|
|
|
// ...parameter.headers,
|
|
|
|
|
// 'Authorization': `Bearer ${getAccessToken()}`,
|
|
|
|
|
// };
|
|
|
|
|
// }
|
|
|
|
|
// debugger;
|
2019-03-04 15:28:16 +08:00
|
|
|
|
return service(parameter);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
service.interceptors.request.use(
|
|
|
|
|
config => {
|
|
|
|
|
// Do something before request is sent
|
2019-03-04 15:28:16 +08:00
|
|
|
|
// if (store.getters.token) {
|
|
|
|
|
// // 让每个请求携带token-- ['X-Token']为自定义key 请根据实际情况自行修改
|
|
|
|
|
// config.headers['X-Token'] = getToken()
|
|
|
|
|
// }
|
|
|
|
|
|
2019-03-28 19:19:04 +08:00
|
|
|
|
// debugger;
|
|
|
|
|
let url = config.url;
|
|
|
|
|
// TODO 芋艿,这些 url 不用增加认证 token 。可能这么写,有点脏,后面看看咋优化下。
|
|
|
|
|
if (url === 'user-api/users/passport/mobile/send_register_code'
|
|
|
|
|
|| url === 'user-api/users/passport/mobile/register') {
|
|
|
|
|
return config;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// debugger;
|
2019-03-27 19:12:12 +08:00
|
|
|
|
if (getAccessToken()) {
|
|
|
|
|
config.headers['Authorization'] = `Bearer ${getAccessToken()}`;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
return config
|
|
|
|
|
},
|
|
|
|
|
error => {
|
|
|
|
|
// Do something with request error
|
|
|
|
|
console.log(error) // for debug
|
|
|
|
|
Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
2019-03-04 15:28:16 +08:00
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
// response interceptor
|
2019-03-04 15:28:16 +08:00
|
|
|
|
service.interceptors.response.use(
|
2019-03-25 18:46:51 +08:00
|
|
|
|
//response => response,
|
|
|
|
|
/**
|
|
|
|
|
* 下面的注释为通过在response里,自定义code来标示请求状态
|
|
|
|
|
* 当code返回如下情况则说明权限有问题,登出并返回到登录页
|
|
|
|
|
* 如想通过 xmlhttprequest 来状态码标识 逻辑可写在下面error中
|
|
|
|
|
* 以下代码均为样例,请结合自生需求加以修改,若不需要,则可删除
|
|
|
|
|
*/
|
|
|
|
|
response => {
|
|
|
|
|
// debugger;
|
|
|
|
|
const res = response.data;
|
2019-03-28 19:19:04 +08:00
|
|
|
|
const code = res.code;
|
|
|
|
|
if (code !== 0) {
|
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
// // 50008:非法的token; 50012:其他客户端登录了; 50014:Token 过期了;
|
|
|
|
|
// if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
|
|
|
|
|
// // 请自行在引入 MessageBox
|
|
|
|
|
// // import { Message, MessageBox } from 'element-ui'
|
|
|
|
|
// MessageBox.confirm('你已被登出,可以取消继续留在该页面,或者重新登录', '确定登出', {
|
|
|
|
|
// confirmButtonText: '重新登录',
|
|
|
|
|
// cancelButtonText: '取消',
|
|
|
|
|
// type: 'warning'
|
|
|
|
|
// }).then(() => {
|
|
|
|
|
// store.dispatch('FedLogOut').then(() => {
|
|
|
|
|
// location.reload() // 为了重新实例化vue-router对象 避免bug
|
|
|
|
|
// })
|
|
|
|
|
// })
|
|
|
|
|
// }
|
2019-03-28 19:19:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO token 过期
|
|
|
|
|
// TODO 需要拿 refresh token 置换
|
|
|
|
|
if (code === 1001001012) {
|
|
|
|
|
Dialog.confirm({
|
|
|
|
|
title: '系统提示',
|
|
|
|
|
message: res.message,
|
|
|
|
|
confirmButtonText: '重新登陆',
|
|
|
|
|
beforeClose: function (action, done) {
|
|
|
|
|
done();
|
|
|
|
|
if (action === 'confirm') {
|
|
|
|
|
// debugger;
|
|
|
|
|
// this.$router.push({ path: '/login' })
|
|
|
|
|
// TODO 跳转到登陆页.不是很优雅
|
|
|
|
|
location.replace('/#login');
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
Dialog.alert({
|
|
|
|
|
title: '系统提示',
|
|
|
|
|
message: res.message,
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-03-25 18:46:51 +08:00
|
|
|
|
console.log(1);
|
|
|
|
|
return Promise.reject('error')
|
|
|
|
|
} else {
|
|
|
|
|
// if (typeof response.data.Tag == 'string') {
|
|
|
|
|
// return JSON.parse(response.data.Tag);
|
|
|
|
|
// } else {
|
|
|
|
|
// return response.data.Tag;
|
|
|
|
|
// }
|
|
|
|
|
// debugger;
|
|
|
|
|
return res.data;
|
2019-03-04 15:28:16 +08:00
|
|
|
|
}
|
2019-03-25 18:46:51 +08:00
|
|
|
|
},
|
|
|
|
|
error => {
|
|
|
|
|
|
|
|
|
|
return Promise.reject(error)
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
|
2019-03-04 15:28:16 +08:00
|
|
|
|
|
2019-03-25 18:46:51 +08:00
|
|
|
|
export default servicef
|