|
@@ -15,6 +15,10 @@ axios.interceptors.request.use(config => {
|
|
|
if (config.method === 'post') {
|
|
|
config.params = undefined
|
|
|
}
|
|
|
+ // 临时打补丁
|
|
|
+ if (/^\/v1\//.test(config.url)) {
|
|
|
+ config.url = '/api/admin' + config.url
|
|
|
+ }
|
|
|
return config
|
|
|
}, error => Promise.resolve(error.response || error)
|
|
|
)
|