From cb662c8c0cddbcab22d85846bdf9f006fe395cce Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 5 May 2026 22:05:24 +0800 Subject: [PATCH] fix: menu.ui uses '{{entire_url('/modulename/tablename')}}' format for table CRUD items --- wwwroot/menu.ui | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/wwwroot/menu.ui b/wwwroot/menu.ui index c3a36c2..e313aab 100644 --- a/wwwroot/menu.ui +++ b/wwwroot/menu.ui @@ -5,18 +5,23 @@ "items": [ { "name": "opportunities", - "label": "商机列表", - "url": "{{entire_url('opportunity_management.ui')}}" + "label": "商机", + "url": "{{entire_url('/opportunity_management/opportunities')}}" }, { - "name": "new_opportunity", - "label": "新建商机", - "url": "{{entire_url('opportunity_edit.ui')}}" + "name": "opportunity_predictions", + "label": "商机预测", + "url": "{{entire_url('/opportunity_management/opportunity_predictions')}}" + }, + { + "name": "opportunity_stage_history", + "label": "阶段变更历史", + "url": "{{entire_url('/opportunity_management/opportunity_stage_history')}}" }, { "name": "sales_stages", "label": "销售阶段", - "url": "{{entire_url('sales_stages_list.dspy')}}" + "url": "{{entire_url('/opportunity_management/sales_stages')}}" } ] }