田源
2024-01-10 541d60628dcb863d8a2cf18207afb8d8b8c62d55
Source/UBCS-WEB/src/views/docking/loge.vue
@@ -126,11 +126,12 @@
      data:[],
      option: {
        height:'auto',
        calcHeight: 0,
        calcHeight: 10,
        tip: false,
        searchShow: false,
        border: true,
        index: true,
        indexFixed:false,
        selection: false,
        dialogClickModal: false,
        menuFixed:false,
@@ -315,13 +316,13 @@
    },
    onLoad(page, params={}) {
      this.loading = true;
      var query={}
      var queryCondition={}
      if (this.query) {
        for (var key in this.query) {
          query['conditionMap["' + key + '"]'] = this.query[key];
          queryCondition['conditionMap["' + key + '"]'] = this.query[key];
        }
      }
      getLogoList(page.currentPage, page.pageSize, 'desc',Object.assign(params,this.params, query,this.query),).then(res => {
      getLogoList(page.currentPage, page.pageSize,'createTime','desc',Object.assign(params,this.params, queryCondition,this.query),).then(res => {
        const data = res.data.data;
        this.page.total = data.total;
        this.data = data.records;