|
@ -2,6 +2,7 @@ import { service } from './service' |
|
|
|
|
|
|
|
|
import { config } from './config' |
|
|
import { config } from './config' |
|
|
import { useCache } from '@/hooks/web/useCache' |
|
|
import { useCache } from '@/hooks/web/useCache' |
|
|
|
|
|
import router from '@/router' |
|
|
|
|
|
|
|
|
const { default_headers } = config |
|
|
const { default_headers } = config |
|
|
const { wsCache } = useCache() |
|
|
const { wsCache } = useCache() |
|
@ -18,7 +19,8 @@ const request = (option: any) => { |
|
|
responseType: responseType, |
|
|
responseType: responseType, |
|
|
headers: { |
|
|
headers: { |
|
|
'Content-Type': headersType || default_headers, |
|
|
'Content-Type': headersType || default_headers, |
|
|
'language': language |
|
|
'language': language, |
|
|
|
|
|
'Referer1': router.currentRoute.value.fullPath.split('?')[0] |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
} |
|
|
} |
|
|