diff --git a/frontend/src/pages/Deploy/Team/List/components/TeamApplicationManageDialog.tsx b/frontend/src/pages/Deploy/Team/List/components/TeamApplicationManageDialog.tsx
index e011972b..9fbb5656 100644
--- a/frontend/src/pages/Deploy/Team/List/components/TeamApplicationManageDialog.tsx
+++ b/frontend/src/pages/Deploy/Team/List/components/TeamApplicationManageDialog.tsx
@@ -240,43 +240,43 @@ export const TeamApplicationManageDialog: React.FC<
- 应用名称
- 环境
- 构建类型
- 分支
- Jenkins系统
- Jenkins Job
- 工作流
- 操作
+ 应用名称
+ 环境
+ 构建类型
+ 分支
+ Jenkins系统
+ Jenkins Job
+ 工作流
+ 操作
{teamApplications.map((app) => (
-
+
{app.applicationName && app.applicationCode
? `${app.applicationName}(${app.applicationCode})`
: app.applicationName || app.applicationCode || `应用 ${app.applicationId}`}
-
+
{getEnvironmentName(app.environmentId)}
-
+
{app.buildType === 'JENKINS' ? 'Jenkins构建' : app.buildType === 'NATIVE' ? '脚本部署' : '-'}
- {app.branch || '-'}
-
+ {app.branch || '-'}
+
{app.buildType === 'JENKINS'
? (app.deploySystemName || (app.deploySystemId ? `系统 ${app.deploySystemId}` : '-'))
: '-'}
-
+
{app.buildType === 'JENKINS' ? (app.deployJob || '-') : '-'}
-
+
{app.workflowDefinitionName || '-'}
-
+