打通结果总览项目分析弹窗入口

This commit is contained in:
wkc
2026-03-25 14:02:45 +08:00
parent 2793cf437c
commit b14eef8482
6 changed files with 199 additions and 3 deletions

View File

@@ -123,8 +123,8 @@
</el-table-column>
<el-table-column label="操作" width="100" align="right">
<template slot-scope="scope">
<el-button type="text" size="mini">{{
scope.row.actionLabel || "查看详情"
<el-button type="text" size="mini" @click="handleViewProject(scope.row)">{{
scope.row.actionLabel || "查看项目"
}}</el-button>
</template>
</el-table-column>
@@ -294,6 +294,9 @@ export default {
}
return modelNames.join("、");
},
handleViewProject(row) {
this.$emit("view-project-analysis", row);
},
resolveModelTagType(tag) {
if (!this.selectedModelCodes.length) {
return "";