|
|
|
@ -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> |
|
|
|
|
|
|
|
|