diff --git a/src/views/evaluation/evaluationUpload.vue b/src/views/evaluation/evaluationUpload.vue
index 5fd58aca..e4537f8d 100644
--- a/src/views/evaluation/evaluationUpload.vue
+++ b/src/views/evaluation/evaluationUpload.vue
@@ -213,14 +213,49 @@
上传说明
@@ -1087,6 +1125,35 @@ import {downLoadZip} from "@/utils/zipdownload";
// slots: { customRender: "addAuthority" },
// },
])
+ const columnsUpload = ref([
+ {
+ title: '文件名称',
+ dataIndex: 'name',
+ width: '150px',
+ align: 'center',
+ ellipsis: true,
+ },
+ {
+ title: '上传状态',
+ dataIndex: 'status',
+ width: '60px',
+ align: 'center',
+ slots: { customRender: 'status' },
+ },
+ {
+ title: '上传进度',
+ dataIndex: 'percent',
+ width: '100px',
+ slots: { customRender: 'percent' },
+ },
+ {
+ title: '操作',
+ dataIndex: 'action',
+ width: '80px',
+ align: 'center',
+ slots: { customRender: 'uploadAction' },
+ },
+ ]);
const textDisabled = async (record) => {
await updateStatus({status:1,id:record.id}).then((res)=>{
if(res.code === 200){
@@ -1393,6 +1460,7 @@ import {downLoadZip} from "@/utils/zipdownload";
}
if(state.stateUpload){
state.uploadList = fileList.slice(-1)
+ console.log(state.uploadList,'uploadList')
}
state.stateUpload = true
};
@@ -1593,6 +1661,7 @@ import {downLoadZip} from "@/utils/zipdownload";
uploadAdmin,
columns,
columnsAdd,
+ columnsUpload,
columns2,
bgupload,
of_exit,
@@ -1642,6 +1711,69 @@ import {downLoadZip} from "@/utils/zipdownload";