123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- import Vue from 'vue'
- import axios from 'axios'
- import store from '@/store'
- import notification from 'ant-design-vue/es/notification'
- import modal from 'ant-design-vue/es/modal'
- import { VueAxios } from './axios'
- // 创建 axios 实例
- const service = axios.create({
- baseURL: process.env.VUE_APP_API_BASE_URL, // api base_url
- timeout: 1000000 // 请求超时时间
- })
- const err = (error) => {
- const config = error.config
- // 网络连接出错
- if (error.message.indexOf('Network Error') >= 0) {
- notification.destroy()
- notification.error({
- message: '提示',
- description: '无网络连接,请检查网络是否连接正常'
- })
- store.commit('SET_loadingStatus', false)
- return Promise.reject(err)
- }
- console.log(error.response,error.response.status)
- // 业务错误提示
- if (error.response) {
- const status = error.response.status.toString()
- if (status.indexOf('5')>=0||status.indexOf('4')>=0) {
- notification.destroy()
- notification.error({
- message: '提示',
- description: error.response.data.message
- })
- }
- store.commit('SET_loadingStatus', false)
- return Promise.reject(err)
- }
- // 超时无法访问服务
- if (error.message.indexOf('timeout') >= 0) {
- notification.destroy()
- notification.error({
- message: '提示',
- description: '网络连接超时,正在重连...'
- })
- // If config does not exist or the retry option is not set, reject
- if (!config || !config.retry) return Promise.reject(err)
- // Set the variable for keeping track of the retry count
- config.__retryCount = Vue.ls.get(config.url + '__retryCount') || 0
- // Check if we've maxed out the total number of retries
- if (config.__retryCount >= config.retry) {
- Vue.ls.remove(config.url + '__retryCount')
- notification.destroy()
- notification.error({
- message: '提示',
- description: '网络重连失败,请检测网络连接是否正常'
- })
- store.commit('SET_loadingStatus', false)
- // Reject with the error
- return Promise.reject(err)
- }
- // Increase the retry count
- config.__retryCount += 1
- Vue.ls.set(config.url + '__retryCount', config.__retryCount)
- // Create new promise to handle exponential backoff
- config.url = config.url.replace('/api', '')
- const backoff = new Promise(function (resolve) {
- setTimeout(function () {
- resolve()
- }, config.retryDelay || 1)
- })
- // Return the promise in which recalls axios to retry the request
- return backoff.then(function () {
- return service(config)
- })
- }
- }
- // request interceptor
- service.interceptors.request.use(config => {
- const token = store.getters.token
- const changeOrg = store.getters.changeOrg
- if (token) {
- config.headers['access-token'] = token // 让每个请求携带自定义 token 请根据实际情况自行修改
- config.headers['access-org'] = changeOrg // 当前要切换的账号 sn
- }
- config.retry = 3
- config.retryDelay = 1000
- store.commit('SET_loadingStatus', true)
- return config
- }, err)
- // response interceptor
- service.interceptors.response.use((response) => {
- console.log(response)
- const et = sessionStorage.getItem('errorTips')
- // 无权限或登录超时
- if ((response.data.status == '1001' || response.data.status == '1099') && !et) {
- sessionStorage.setItem('errorTips', 1)
- modal.destroyAll()
- modal.error({
- title: '提示',
- content: response.data.message,
- onOk () {
- sessionStorage.setItem('errorTips', 0)
- if(response.data.status == '1099'){
- store.dispatch('Logout').then(() => {
- window.location.reload()
- })
- }
- }
- })
- } else if (response.data.status != 200 && response.data.status && response.data.errCode != 'VALIDATE_STOCK_LACK') {
- // 单据不存在
- if(response.data.message.indexOf('不存在')>=0 || response.data.message.indexOf('单据已删除')>=0){
- modal.destroyAll()
- modal.error({
- title: '提示',
- content: response.data.message,
- onOk () {
- window.history.go(-1)
- }
- })
- }else{
- // 其它业务错误提示
- notification.destroy()
- notification.error({
- message: '提示',
- description: response.data.message
- })
- }
- store.commit('SET_loadingStatus', false)
- }
-
- return response.data
- }, err)
- const installer = {
- vm: {},
- install (Vue) {
- Vue.use(VueAxios, service)
- }
- }
- export {
- installer as VueAxios,
- service as axios
- }
|