From 7b03f37ed3aa26eb77f0b2290cd69745f7bc58fe Mon Sep 17 00:00:00 2001 From: ymq Date: Thu, 20 Aug 2026 15:54:12 +0800 Subject: [PATCH] =?UTF-8?q?fix(menus):=20=E4=BA=A7=E7=BA=BF=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E8=8F=9C=E5=8D=95=E6=8C=87=E5=90=91=E7=9C=9F=20CRUD?= =?UTF-8?q?=20=E9=A1=B5=E9=9D=A2=E8=80=8C=E9=9D=9E=20xls2crud=20stub?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit menus url 原指向 sd_*_list/index.ui(xls2crud 占位页,无数据),改为 sd_projects/sd_bugs/sd_test_cases/sd_iterations(xls2ui 生成的真实 CRUD 页面)。 --- pipeline_service/sdlc_ability.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pipeline_service/sdlc_ability.py b/pipeline_service/sdlc_ability.py index 0ef19fa..13508c9 100644 --- a/pipeline_service/sdlc_ability.py +++ b/pipeline_service/sdlc_ability.py @@ -1642,10 +1642,10 @@ def register_sdlc_ability(): handlers=SDL_HANDLERS, roles=SDL_ROLES, menus=[ - {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_project_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bug_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_case_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, - {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iteration_list/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "📁 项目", "icon": "", "url": "/pipeline-sdlc/sd_projects/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🐛 Bug", "icon": "", "url": "/pipeline-sdlc/sd_bugs/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🧪 测试用例", "icon": "", "url": "/pipeline-sdlc/sd_test_cases/index.ui", "type": "popup", "width": "85%", "height": "80%"}, + {"label": "🔄 迭代", "icon": "", "url": "/pipeline-sdlc/sd_iterations/index.ui", "type": "popup", "width": "85%", "height": "80%"}, ], ) register_ability(ability)