|
@@ -1,7 +1,7 @@
|
|
|
/*
|
|
|
* @Author: your name
|
|
|
* @Date: 2022-01-06 09:45:17
|
|
|
- * @LastEditTime: 2022-03-16 09:17:41
|
|
|
+ * @LastEditTime: 2022-03-29 18:11:10
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
|
* @FilePath: \vue-admin-template\src\utils\request.js
|
|
@@ -20,9 +20,10 @@ const service = axios.create({
|
|
|
timeout: 30000, // request timeout
|
|
|
headers: {
|
|
|
'Content-Type': 'application/json'
|
|
|
- },
|
|
|
+ }
|
|
|
})
|
|
|
-let loadingInstance, flag = false
|
|
|
+let loadingInstance,
|
|
|
+ flag = false
|
|
|
// request interceptor
|
|
|
service.interceptors.request.use(
|
|
|
config => {
|
|
@@ -45,6 +46,15 @@ service.interceptors.request.use(
|
|
|
text: '数据加载中'
|
|
|
})
|
|
|
}
|
|
|
+ if (!config.url.includes('/api/fs4a/sendLog') && config.msg) {
|
|
|
+ config.metaData = {
|
|
|
+ beginTime: new Date(),
|
|
|
+ browserTag: navigator.userAgent,
|
|
|
+ logType: config.msg ?? '未定义操作',
|
|
|
+ operateIP: returnCitySN.cip,
|
|
|
+ operator: getUserId()
|
|
|
+ }
|
|
|
+ }
|
|
|
return config
|
|
|
},
|
|
|
error => {
|
|
@@ -59,7 +69,7 @@ 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
|
|
@@ -68,6 +78,25 @@ service.interceptors.response.use(
|
|
|
*/
|
|
|
response => {
|
|
|
const res = response.data
|
|
|
+ const config = response.config
|
|
|
+ if (!config.url.includes('/api/fs4a/sendLog') && config.msg) {
|
|
|
+ config.metaData = {
|
|
|
+ ...config.metaData,
|
|
|
+ endTime: new Date(),
|
|
|
+ data: config.data,
|
|
|
+ operateResult: res.returnData
|
|
|
+ }
|
|
|
+ service({
|
|
|
+ url: '/api/fs4a/sendLog',
|
|
|
+ method: 'post',
|
|
|
+ data: {
|
|
|
+ data: [config.metaData],
|
|
|
+ msg: config.msg,
|
|
|
+ type: '2'
|
|
|
+ },
|
|
|
+ proxy: true
|
|
|
+ })
|
|
|
+ }
|
|
|
if (res.code == 0 || res.code == -1) {
|
|
|
flag = false
|
|
|
loadingInstance.close()
|
|
@@ -79,7 +108,7 @@ service.interceptors.response.use(
|
|
|
type: 'error',
|
|
|
duration: 5 * 1000,
|
|
|
onClose: () => {
|
|
|
- store.dispatch('tagsView/delAllViews').then(() => { })
|
|
|
+ store.dispatch('tagsView/delAllViews').then(() => {})
|
|
|
store.dispatch('user/resetToken').then(() => {
|
|
|
location.reload()
|
|
|
})
|
|
@@ -121,15 +150,15 @@ service.interceptors.response.use(
|
|
|
},
|
|
|
error => {
|
|
|
// console.log('err', error) // for debug
|
|
|
- const des = `${error}`.split(" ").includes('500')
|
|
|
+ const des = `${error}`.split(' ').includes('500')
|
|
|
if (des) {
|
|
|
Message({
|
|
|
message: '身份令牌过期或失效,即将重新登录',
|
|
|
type: 'error',
|
|
|
duration: 5 * 1000,
|
|
|
onClose: () => {
|
|
|
- store.dispatch("app/toggleDialog", false)
|
|
|
- store.dispatch('tagsView/delAllViews').then(() => { })
|
|
|
+ store.dispatch('app/toggleDialog', false)
|
|
|
+ store.dispatch('tagsView/delAllViews').then(() => {})
|
|
|
store.dispatch('user/resetToken').then(() => {
|
|
|
location.reload()
|
|
|
})
|