fix(menus): 产线功能菜单指向真 CRUD 页面而非 xls2crud stub

menus url 原指向 sd_*_list/index.ui(xls2crud 占位页,无数据),改为
sd_projects/sd_bugs/sd_test_cases/sd_iterations(xls2ui 生成的真实 CRUD 页面)。
This commit is contained in:
ymq 2026-08-20 15:54:12 +08:00
parent ff2179be67
commit 7b03f37ed3

View File

@ -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)