增加屏蔽loading功能
This commit is contained in:
parent
130910308d
commit
8fd8296c69
|
|
@ -38,5 +38,6 @@ export const getSystemState = () => {
|
|||
return service({
|
||||
url: "/system/getServerInfo",
|
||||
method: "post",
|
||||
donNotShowLoading: true
|
||||
});
|
||||
};
|
||||
|
|
@ -30,7 +30,10 @@ const closeLoading = () => {
|
|||
//http request 拦截器
|
||||
service.interceptors.request.use(
|
||||
config => {
|
||||
console.log(config)
|
||||
if (!config.donNotShowLoading) {
|
||||
showLoading()
|
||||
}
|
||||
const token = store.getters['user/token']
|
||||
const user = store.getters['user/userInfo']
|
||||
config.data = JSON.stringify(config.data);
|
||||
|
|
|
|||
Loading…
Reference in New Issue