实现项目列表重新分析交互

This commit is contained in:
wkc
2026-03-24 12:44:17 +08:00
parent f101990bb6
commit eda2bd1b16
3 changed files with 68 additions and 4 deletions

View File

@@ -120,6 +120,8 @@
size="mini"
type="text"
icon="el-icon-refresh"
:loading="reAnalyzeLoadingMap[String(scope.row.projectId)]"
:disabled="reAnalyzeLoadingMap[String(scope.row.projectId)]"
@click="handleReAnalyze(scope.row)"
>
重新分析
@@ -185,6 +187,10 @@ export default {
pageSize: 10,
}),
},
reAnalyzeLoadingMap: {
type: Object,
default: () => ({}),
},
},
methods: {
getStatusColor(status) {