forked from jzfai/vue3-admin-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
73 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import axios from 'axios' | ||
import { ElMessage } from 'element-plus' | ||
import { AxiosReqTy } from '~/common' | ||
|
||
// create an axios instance | ||
const service= axios.create({ | ||
baseURL: '', // url = base url + request url | ||
// withCredentials: true, // send cookies when cross-domain requests | ||
timeout: 8000 // request timeout | ||
}) | ||
|
||
// request interceptor | ||
service.interceptors.request.use( | ||
(config:AxiosReqTy) => { | ||
return config | ||
}, | ||
(error) => { | ||
return Promise.reject(error) | ||
} | ||
) | ||
|
||
// response interceptor | ||
service.interceptors.response.use( | ||
/** | ||
* If you want to get http information such as headers or status | ||
* Please return response => response | ||
*/ | ||
|
||
/** | ||
* Determine the request status by custom code | ||
* Here is just an example | ||
* You can also judge the status by HTTP Status Code | ||
*/ | ||
(response) => { | ||
const res = response.data | ||
|
||
// if the custom code is not 20000, it is judged as an error. | ||
if (res.code !== 20000) { | ||
ElMessage({ | ||
message: res.ElMessage || 'Error', | ||
type: 'error', | ||
duration: 5 * 1000 | ||
}) | ||
return Promise.reject(new Error(res.ElMessage || 'Error')) | ||
} else { | ||
return res | ||
} | ||
}, | ||
(error) => { | ||
console.log('err' + error) // for debug | ||
ElMessage({ | ||
message: error.ElMessage, | ||
type: 'error', | ||
duration: 5 * 1000 | ||
}) | ||
return Promise.reject(error) | ||
} | ||
) | ||
|
||
export default service |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ declare let onlyOneChild: any | |
|
||
//declare import module | ||
declare module '*/**' | ||
declare module '*' | ||
|
||
|