From 265745297799b1eabf644e36b5ab006afd8e39f2 Mon Sep 17 00:00:00 2001 From: zly Date: Tue, 24 Mar 2026 15:55:33 +0800 Subject: [PATCH] =?UTF-8?q?feat(componentDeployment):=20=E5=AE=9E=E4=BE=8B?= =?UTF-8?q?=E7=BC=96=E8=AF=91=E7=8A=B6=E6=80=81=E5=A2=9E=E5=8A=A0=E6=96=B0?= =?UTF-8?q?=E7=9A=84=E6=9E=9A=E4=B8=BE=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/const/isdp/componentDeploy.ts | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/const/isdp/componentDeploy.ts b/src/const/isdp/componentDeploy.ts index bd6aaff..c833a17 100644 --- a/src/const/isdp/componentDeploy.ts +++ b/src/const/isdp/componentDeploy.ts @@ -72,15 +72,22 @@ export const startStatusMap = startStatusDic.reduce((obj, item) => { * BUILT_SUCCESS 编译成功 * BUILT_FAILED 编译失败 * BUILT_CANCELED 编译取消 + * BUILT_NEVER 未编译 */ export const compileStatusConstant = { BUILT_IDLE: 'idle', BUILT_RUNNING: 'running', BUILT_SUCCESS: 'success', BUILT_FAILED: 'failed', - BUILT_CANCELED: 'canceled' + BUILT_CANCELED: 'canceled', + BUILT_NEVER: 'never', }; export const compileStatusDic = [ + { + label: '未编译', + value: compileStatusConstant.BUILT_RUNNING, + color: 'gray' + }, { label: '空闲中', value: compileStatusConstant.BUILT_IDLE, @@ -89,7 +96,7 @@ export const compileStatusDic = [ { label: '编译中', value: compileStatusConstant.BUILT_RUNNING, - color: 'gray' + color: 'blue' }, { label: '编译成功',