fix : 修复详情提交/重新提交功能

This commit is contained in:
2024-06-10 22:34:51 +08:00
parent 3379d851c6
commit 9c812af394
7 changed files with 192 additions and 190 deletions

View File

@@ -48,7 +48,8 @@ const tableConfig = reactive({
{
prop: 'size',
label: '文件大小',
align: 'center'
align: 'center',
currentRender: ({row, index}) => (parseInt(row.size / 1024) + 'KB')
},
{
prop: 'oper',
@@ -119,7 +120,7 @@ const handleSubmit = async () => {
})
let params = {
fileList: files,
targetState:'',
targetState:route.query.name,
projectId: route.query.id,
}
let res = await uploadFileList(params)