123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import axios from '../js_sdk/xtshadow-axios/axios.min'
- import store from '../store'
- import {
- paramsToStr,
- currentPage,
- toast
- } from './tools'
- import Cache from './cache'
- import {
- TOKEN
- } from '../config/cachekey'
- import {
- baseURL
- } from '../config/app'
- import {
- toLogin
- } from './login'
- import {
- router
- } from '../router'
- let index = 0;
- function checkParams(params) {
- if (typeof params != 'object') return params
- for (let key in params) {
- const value = params[key];
- if (value === null || value === undefined || value === "") {
- delete params[key];
- }
- }
- return params;
- }
- const service = axios.create({
- baseURL: baseURL + '/api/v1/',
- timeout: 10000,
- header: {
- 'content-type': 'application/x-www-form-urlencoded',
- "Access-Control-Allow-Origin": "*",
- "Access-Control-Allow-Methods": "*",
- "Access-Control-Allow-Headers": "authorization,Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,token"
- },
- });
- // request拦截器
- service.interceptors.request.use(
- config => {
- config.data = checkParams(config.data)
- config.params = checkParams(config.params)
- if (config.method == 'GET') {
- config.url += paramsToStr(config.params)
- }
- config.header.token = store.getters.token
- return config
- },
- error => {
- // Do something with request error
- console.log(error) // for debug
- Promise.reject(error)
- }
- )
- // response 拦截器
- service.interceptors.response.use(
- async (response) => {
- if (response.data) {
- const {
- status,
- show,
- info
- } = response.data;
- if (status == 0) { //错误
- toast({
- title: info,
- })
- } else if (status == -1) { //未登录
- // toast({
- // title: info,
- // })
- // store.commit('logout')
- // toLogin()
- } else if (status == 2) { //失败
- toast({
- title: info,
- })
- } else if (status == 301) { //重定向
- // 返回上一页
- toast({
- title: info,
- }, {
- tab: 3,
- url: 1
- })
- }
- }
- return Promise.resolve(response.data)
- },
- error => {
- uni.showToast({
- title: "系统错误",
- icon: "none"
- })
- console.log(error)
- console.log('err' + error) // for debug
- return Promise.reject(error)
- }
- )
- export default service
|