调整信息维护页面并修复项目概览统计

This commit is contained in:
wkc
2026-05-06 18:22:26 +08:00
parent 0541ce0ac6
commit c64146ac40
33 changed files with 774 additions and 1831 deletions

View File

@@ -195,7 +195,15 @@ export default {
handleSubmitProject(data) {
// 不需要再次调用API因为AddProjectDialog已经处理了
this.addDialogVisible = false
this.getList() // 刷新列表
if (!data || !data.projectId) {
this.$modal.msgError("项目创建成功后未返回项目ID无法进入上传数据页面")
this.getList()
return
}
this.$router.push({
path: `/ccdiProject/detail/${data.projectId}`,
query: { tab: "upload" },
})
},
/** 导入历史项目 */
handleImport() {