From 6531b52f50f7dc94ac9136d4eb1d3ecec765516e Mon Sep 17 00:00:00 2001 From: zs <zhousong@weben-smart.com> Date: 周三, 30 4月 2025 17:13:14 +0800 Subject: [PATCH] Merge branch 'master' of http://222.71.245.114:9086/r/HIA24016N_PipeLineDemo --- PipeLineLems/web/src/components/ProjectConfig/ProjectConfig.tsx | 28 +++++++++++++++++++++++++++- 1 files changed, 27 insertions(+), 1 deletions(-) diff --git a/PipeLineLems/web/src/components/ProjectConfig/ProjectConfig.tsx b/PipeLineLems/web/src/components/ProjectConfig/ProjectConfig.tsx index 3f65ef6..c3769f2 100644 --- a/PipeLineLems/web/src/components/ProjectConfig/ProjectConfig.tsx +++ b/PipeLineLems/web/src/components/ProjectConfig/ProjectConfig.tsx @@ -78,7 +78,7 @@ <Fragment> <BaseDialog onOpen={onOpenDialog} - width="700px" + width="1400px" title="椤圭洰閰嶇疆" v-model={visible.value} onConfirm={onConfirm} @@ -111,6 +111,32 @@ )} </div> </div> + <div class={styles.rightPane}> + <div class={styles.header}> + <h3 style="margin:0;">LMES缁勪欢</h3> + <IconButton + onClick={() => onAddWidget(2)} + icon="add-p" + status="add" + > + 娣诲姞 + </IconButton> + </div> + <div class={styles.list}> + {build.value.length ? ( + build.value.map((item) => ( + <div class={styles.item}> + <div class={styles.itemContent}> + <span class={styles.span}>{menuMap[item]?.name}</span> + </div> + <el-tag>{item}</el-tag> + </div> + )) + ) : ( + <el-empty style="margin-left: 39%;" /> + )} + </div> + </div> </div> </BaseDialog> <BaseDialog -- Gitblit v1.9.3