ludc
2023-06-28 2cffeb30840020af3654f74ea700ec94dc82024c
Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue
@@ -272,8 +272,7 @@
        var query={}
        if (this.query) {
          for (var key in this.query) {
            query['conditionMap["' + key + '"]'] = '*'+this.query[key]+'*';
            query[key]='*'+this.query[key]+'*';
            query['conditionMap["' + key + '"]'] = this.query[key];
          }
        }
        getList(Object.assign(params,this.params,this.query, query),page.currentPage, page.pageSize, this.url).then(res => {
@@ -281,6 +280,9 @@
          this.page.total=res.data.total
          this.loading = false;
          this.selectionClear();
        }).catch(error=>{
          this.$message.error(error);
          this.loading = false;
        });
      }