import axios from 'axios' // import { Message, MessageBox } from 'element-ui' // import store from '../store' // import { getToken } from '@/utils/auth' export const wsuri = `ws://192.168.1.212:61101//WebMoudule//websocket` export const name = `OP8888` // 创建axios实例 export const readFile = `192.168.1.212:8411/webpage/file/` // invoice export const readImg = `192.168.1.212:8411/webpage/img/` // delivery/MS/performancebond export const upload = `192.168.1.212:8411/submit/uploadFile.ashx` // ContractInformationManagement export const upload2 = `192.168.1.212:8411/submit/upload2.ashx` // delivery export const upload3 = `192.168.1.212:8411/submit/upload3.ashx` // performancebond export const uploadInvoiceScan = `192.168.1.212:8411/submit/uploadInvoiceScan.ashx` // invoice export const download = `192.168.1.212:8411/submit/downloadFile.ashx` // ContractInformationManagement const service = axios.create({ // baseURL: `http://192.168.1.149:8411/submit/MESCommonBase.ashx`, // baseURL: `http://192.168.1.149:8411/submit/MESCommonBase.ashx`, // baseURL: `http://localhost:8411/submit/MESCommonBase.ashx`, // baseURL: `http://localhost:8411/submit/MESCommonBase.ashx`, baseURL: `http://localhost:8411/submit/MESCommonBase.ashx`, // baseURL: `http://localhost:8077/submit/MESCommonBase.ashx`, // baseURL: `http://192.168.0.112:8411/submit/MESCommonBase.ashx`, timeout: 1500000 // 请求超时时间 }) // request拦截器 // service.interceptors.request.use( // config => { // if (store.getters.token) { // config.headers['X-Token'] = getToken() // 让每个请求携带自定义token 请根据实际情况自行修改 // } // return config // }, // error => { // // Do something with request error // console.log(error) // for debug // Promise.reject(error) // } // ) // response 拦截器 // service.interceptors.response.use( // response => { // /** // * code为非20000是抛错 可结合自己业务进行修改 // */ // const res = response.data // if (res.code !== 20000) { // Message({ // message: res.message, // type: 'error', // duration: 5 * 1000 // }) // // // 50008:非法的token; 50012:其他客户端登录了; 50014:Token 过期了; // if (res.code === 50008 || res.code === 50012 || res.code === 50014) { // MessageBox.confirm( // '你已被登出,可以取消继续留在该页面,或者重新登录', // '确定登出', // { // confirmButtonText: '重新登录', // cancelButtonText: '取消', // type: 'warning' // } // ).then(() => { // store.dispatch('FedLogOut').then(() => { // location.reload() // 为了重新实例化vue-router对象 避免bug // }) // }) // } // return Promise.reject('error') // } else { // return response.data // } // }, // error => { // console.log('err' + error) // for debug // Message({ // message: error.message, // type: 'error', // duration: 5 * 1000 // }) // return Promise.reject(error) // } // ) export default service