Browse Source

同期数据对比

gks 1 year ago
parent
commit
f4f3a152c6
2 changed files with 6 additions and 2 deletions
  1. 1 1
      src/utils/request.js
  2. 5 1
      src/views/TQSJ/index.vue

+ 1 - 1
src/utils/request.js

@@ -69,6 +69,7 @@ const allowRequest = function (reqList, url) {
 
 // request拦截器
 service.interceptors.request.use(config => {
+  Vue.prototype.$layer.loading({ content: '请稍等!' });
   let cancel = null;
   // 设置cancelToken对象
   config.cancelToken = new axios.CancelToken(function (c) {
@@ -78,7 +79,6 @@ service.interceptors.request.use(config => {
   stopRepeatRequest(reqList, config.url, cancel, `${config.url} 请求被中断`)
   // ++count;
 
-  Vue.prototype.$layer.loading({ content: '请稍等!' });
   // 是否需要设置 token
   const isToken = (config.headers || {}).isToken === false
   // 是否需要防止数据重复提交

+ 5 - 1
src/views/TQSJ/index.vue

@@ -6,6 +6,7 @@
       <el-form-item label="保税区">
         <el-select v-model="queryParams.cbIdArr" multiple placeholder="请选择保税区">
           <el-option
+            @change="selectBsqHandle"
             v-for="item in regionList"
             :key="item.value"
             :label="item.label"
@@ -222,9 +223,12 @@ export default {
   },
   created() {
     this.bondedList()
-    this.getNormFeelistAll()
+    // this.getNormFeelistAll()
   },
   methods: {
+    selectBsqHandle(){
+      this.getList();
+    },
     selectChange(val){
       this.queryParams.dateValue = ''
       this.queryParams.yearVlue = ''