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

@@ -160,12 +160,21 @@ const handleSubmit = async (instance) => {
})
if (res.code === 1000) {
tagsViewStore.delVisitedViews(router.currentRoute.value.path)
await router.push({
name: 'Implementation/attachment',
query:{
id: route.query.id
}
})
if(route.query.type=='3'){
await router.push({
name: 'Filing/attachment',
query:{
id: route.query.id
}
})
}else {
await router.push({
name: 'Implementation/attachment',
query:{
id: route.query.id
}
})
}
}
})
}