buhuazhen
4 天以前 2c783310e724c54f3936856410b701a3be79eab4
src/views/personnelManagement/contractManagement/filesDia.vue
@@ -28,6 +28,7 @@
          :tableData="tableData"
          :tableLoading="tableLoading"
          :isSelection="true"
          :page="page"
          @selection-change="handleSelectionChange"
          height="500"
          @pagination="paginationSearch"
@@ -118,7 +119,7 @@
const getList = () => {
  fileListPage({accountId: currentId.value,accountType:accountType.value, ...page}).then(res => {
    tableData.value = res.data.records;
      total.value = res.data.total;
    page.total = res.data.total;
  })
}
// 表格选择数据
@@ -157,7 +158,7 @@
}
// 下载附件
const downLoadFile = (row) => {
  proxy.$download.name(row.url);
   proxy.$download.byUrl(row.url, row.originalFilename);
}
// 删除
const handleDelete = () => {