wangting
2023-06-28 1808f278f5b1f1a581d7db623955438e72ef1e21
Source/UBCS-WEB/src/components/refer/vciWebReferDefalut.vue
@@ -272,13 +272,12 @@
        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 => {
          this.data = res.data.records;
          this.page.total=res.data.total
          this.data = res.data;
          this.page.total=res.total
          this.loading = false;
          this.selectionClear();
        });