fix : 修复项目归档五个附件上传功能

This commit is contained in:
2024-06-01 19:05:11 +08:00
parent dd046f645f
commit bc27a83848
6 changed files with 91 additions and 122 deletions

View File

@@ -127,12 +127,22 @@ const changeFileList = (res) => {
}
}
const upload = () => {
router.push({
name: switchUpload(activeName.value),
query: {
id: route.query.id
}
})
if(activeName.value==='3'){
router.push({
name: 'Implementation/upload',
query: {
id: route.query.id,
type:'3'
}
})
}else {
router.push({
name: switchUpload(activeName.value),
query: {
id: route.query.id
}
})
}
}
const switchUpload=(index)=>{
switch (index) {