ludc
2025-01-16 391eec3114a17e68652434c6eae610799d80290e
Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-table.vue
@@ -339,7 +339,7 @@
    },
    getParams: function () {
      const tableParams = {
        btmname: this.currentDefineVO.btmType,
        btmName: this.currentDefineVO.btmType,
        btmType:this.currentDefineVO.btmType,
        tableDefineId: this.currentDefineVO.id,
        componentOid: this.componentVO.oid,
@@ -356,7 +356,11 @@
      if (Object.keys(this.sourceData).length>0 && this.isShow) {
        this.tableList = [];
        this.loading = true;
        getList(page.currentPage, page.pageSize, Object.assign({},this.params,this.query,params)).then(res => {
        let url='';
        if(this.componentVO.bsDataModel && this.componentVO.bsDataModel.indexOf('/')!=-1){
          url=this.componentVO.bsDataModel;
        }
        getList(page.currentPage, page.pageSize, Object.assign({},this.params,this.query,params),url).then(res => {
          let data = [];
          if (res.data && res.data.data) {
            data = res.data.data;