|
@@ -3,7 +3,6 @@ import axios from 'axios'
|
|
import _ from 'lodash'
|
|
import _ from 'lodash'
|
|
import { Toast, Notify } from 'vant'
|
|
import { Toast, Notify } from 'vant'
|
|
import { getCookieValue } from '@/utils'
|
|
import { getCookieValue } from '@/utils'
|
|
-import { platform } from '@/utils/platform'
|
|
|
|
|
|
|
|
const host = window.location.host
|
|
const host = window.location.host
|
|
const domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
|
|
const domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
|
|
@@ -52,14 +51,13 @@ const toHideLoading = _.debounce(() => {
|
|
request.interceptors.request.use(request => {
|
|
request.interceptors.request.use(request => {
|
|
const requestUrl = request.url
|
|
const requestUrl = request.url
|
|
|
|
|
|
- if (platform.isWeixin) {
|
|
|
|
- // 因为微信开发者工具重复授权,本地开发时写死
|
|
|
|
- if (/^(0|192|10|localhost)/.test(domain)) {
|
|
|
|
- request.headers.wechatToken = '290e12a0ac3e9d467dbd1e0e98f1eb0c'
|
|
|
|
- } else {
|
|
|
|
- request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
|
|
|
|
- }
|
|
|
|
|
|
+ // 因为微信开发者工具重复授权,本地开发时写死
|
|
|
|
+ if (/^(0|192|10|localhost)/.test(domain)) {
|
|
|
|
+ request.headers.wechatToken = '4a55eef015f9e7c8fe8a2e6477209819'
|
|
|
|
+ } else {
|
|
|
|
+ request.headers.wechatToken = getCookieValue('fanbutingwechatToken')
|
|
}
|
|
}
|
|
|
|
+
|
|
request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
|
|
request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
|
|
|
|
|
|
// 判断当前请求是否设置了不显示Loading
|
|
// 判断当前请求是否设置了不显示Loading
|