田源
2023-08-28 6f7a783333a550411112c1b109406a04821cb182
接口基本信息管理 表格数据不显示bug
已修改1个文件
8 ■■■■ 文件已修改
Source/UBCS-WEB/src/views/docking/info.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/views/docking/info.vue
@@ -112,7 +112,8 @@
          prop: 'pushType',
          sortable: true,
          width: 150,
          formatter:function (d){
          //pushTypeList作用域
          formatter:(d)=>{
            return this.pushTypeList[d.pushType]
          }
        }, {
@@ -160,7 +161,7 @@
          prop: 'paramType',
          sortable: true,
          width: 150,
          formatter:function (d){
          formatter: (d)=>{
            return this.paramTypeList[d.paramType]
          }
        }, {
@@ -168,7 +169,7 @@
          prop: 'returnType',
          sortable: true,
          width: 150,
          formatter:function (d){
          formatter: (d)=>{
            return this.returnTypeList[d.returnType]
          }
        }, {
@@ -325,7 +326,6 @@
      this.loading = true;
      getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(res => {
        const data = res.data.data;
        debugger;
        this.page.total = data.total;
        this.data = data.records;
        this.loading = false;