chenhj
4 天以前 4db45250f9e0e47b1df480eb4e325a931f40c9c6
src/views/basicData/supplierManage/filesDia.vue
@@ -28,18 +28,11 @@
          :tableData="tableData"
          :tableLoading="tableLoading"
          :isSelection="true"
          :page="{ total, current: page.current, size: page.size }"
          @pagination="paginationSearch"
          @selection-change="handleSelectionChange"
          height="500"
      >
      </PIMTable>
         <pagination
            style="margin: 10px 0"
            v-show="total > 0"
            @pagination="paginationSearch"
            :total="total"
            :page="page.current"
            :limit="page.size"
         />
          height="450"
      />
      <template #footer>
        <div class="dialog-footer">
          <el-button @click="closeDia">取消</el-button>
@@ -60,7 +53,6 @@
  fileDel,
  fileListPage
} from "@/api/basicData/supplierManageFile.js";
import Pagination from "@/components/PIMTable/Pagination.vue";
const { proxy } = getCurrentInstance()
const emit = defineEmits(['close'])
@@ -85,13 +77,13 @@
          downLoadFile(row);
        },
      },
      {
        name: "预览",
        type: "text",
        clickFun: (row) => {
          lookFile(row);
        },
      }
      // {
      //   name: "预览",
      //   type: "text",
      //   clickFun: (row) => {
      //     lookFile(row);
      //   },
      // }
    ],
  },
]);