|
@@ -123,7 +123,11 @@ instance.interceptors.request.use(function (config) {
|
|
|
|
|
|
|
|
|
config.headers.common['Authorization'] = localStorage.getItem('Authorization');
|
|
|
- showFullScreenLoading();
|
|
|
+ if (config.noLoading === true) {
|
|
|
+ console.log("noLoading");
|
|
|
+ } else {
|
|
|
+ showFullScreenLoading();
|
|
|
+ }
|
|
|
return config;
|
|
|
}, function (error) {
|
|
|
|