|
@@ -1,7 +1,7 @@
|
|
|
/*
|
|
|
* @Author: your name
|
|
|
* @Date: 2022-01-06 09:45:17
|
|
|
- * @LastEditTime: 2022-02-28 22:50:39
|
|
|
+ * @LastEditTime: 2022-03-02 15:03:14
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
|
* @FilePath: \vue-admin-template\src\utils\request.js
|
|
@@ -74,16 +74,17 @@ service.interceptors.response.use(
|
|
|
})
|
|
|
|
|
|
// 50008: Illegal token; 50012: Other clients logged in; 50014: Token expired;
|
|
|
- if (res.code === 50008 || res.code === 50012 || res.code === 50014) {
|
|
|
+ if (res.code == 500) {
|
|
|
// to re-login
|
|
|
- MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
|
|
|
- confirmButtonText: 'Re-Login',
|
|
|
- cancelButtonText: 'Cancel',
|
|
|
- type: 'warning'
|
|
|
- }).then(() => {
|
|
|
- store.dispatch('user/resetToken').then(() => {
|
|
|
- location.reload()
|
|
|
- })
|
|
|
+ Message({
|
|
|
+ message: '身份令牌过期或失效,即将重新登录',
|
|
|
+ type: 'error',
|
|
|
+ duration: 5 * 1000,
|
|
|
+ onClose: () => {
|
|
|
+ store.dispatch('user/resetToken').then(() => {
|
|
|
+ location.reload()
|
|
|
+ })
|
|
|
+ }
|
|
|
})
|
|
|
}
|
|
|
// loadingInstance.close()
|
|
@@ -94,12 +95,35 @@ service.interceptors.response.use(
|
|
|
}
|
|
|
},
|
|
|
error => {
|
|
|
- console.log('err' + error) // for debug
|
|
|
- Message({
|
|
|
- message: error.message,
|
|
|
- type: 'error',
|
|
|
- duration: 5 * 1000
|
|
|
- })
|
|
|
+ // console.log('err', error) // for debug
|
|
|
+ const des = `${error}`.split(" ").includes('500')
|
|
|
+ if (des) {
|
|
|
+ Message({
|
|
|
+ message: '身份令牌过期或失效,即将重新登录',
|
|
|
+ type: 'error',
|
|
|
+ duration: 5 * 1000,
|
|
|
+ onClose: () => {
|
|
|
+ store.dispatch('user/resetToken').then(() => {
|
|
|
+ location.reload()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ // MessageBox.confirm('You have been logged out, you can cancel to stay on this page, or log in again', 'Confirm logout', {
|
|
|
+ // confirmButtonText: 'Re-Login',
|
|
|
+ // cancelButtonText: 'Cancel',
|
|
|
+ // type: 'warning'
|
|
|
+ // }).then(() => {
|
|
|
+ // store.dispatch('user/resetToken').then(() => {
|
|
|
+ // location.reload()
|
|
|
+ // })
|
|
|
+ // })
|
|
|
+ } else {
|
|
|
+ Message({
|
|
|
+ message: error.message,
|
|
|
+ type: 'error',
|
|
|
+ duration: 5 * 1000
|
|
|
+ })
|
|
|
+ }
|
|
|
// loadingInstance.close()
|
|
|
return Promise.reject(error)
|
|
|
}
|