From 684311e59ba322975b344e20f776aefd5451a618 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 5 May 2026 21:33:57 +0800 Subject: [PATCH] feat: add menu.ui as module entry point with CRUD and UI/DSpy menu items --- wwwroot/menu.ui | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 wwwroot/menu.ui diff --git a/wwwroot/menu.ui b/wwwroot/menu.ui new file mode 100644 index 0000000..baa2a2f --- /dev/null +++ b/wwwroot/menu.ui @@ -0,0 +1,17 @@ +[ + { + "name": "opportunities", + "label": "商机列表", + "url": "{{entire_url('opportunity_management.ui')}}" + }, + { + "name": "new_opportunity", + "label": "新建商机", + "url": "{{entire_url('opportunity_edit.ui')}}" + }, + { + "name": "sales_stages", + "label": "销售阶段", + "url": "{{entire_url('sales_stages_list.dspy')}}" + } +]