|
|
|
@ -2,7 +2,7 @@ |
|
|
|
<div class="export-list-page"> |
|
|
|
<!-- 页面标题 --> |
|
|
|
<h3 class="page-title">导出文件列表</h3> |
|
|
|
|
|
|
|
|
|
|
|
<!-- 表格 --> |
|
|
|
<el-table |
|
|
|
:data="exportList" |
|
|
|
@ -52,7 +52,7 @@ const router = useRouter(); |
|
|
|
|
|
|
|
// 导出列表数据 |
|
|
|
const exportList = ref([]); |
|
|
|
const totalCount = ref(7) |
|
|
|
const totalCount = ref(0) |
|
|
|
|
|
|
|
// 状态映射配置 |
|
|
|
const statusTypeMap = { |
|
|
|
@ -90,7 +90,9 @@ const handleDownload = (exportdata) => { |
|
|
|
|
|
|
|
// 关闭按钮 |
|
|
|
const handleClose = () => { |
|
|
|
router.go(-1); |
|
|
|
router.push({ |
|
|
|
path: "/userPermissions/market" |
|
|
|
}); |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|
|
|
|
|