From 8fda537caa8d7a5538a40adcc5c50e3db97d17ed Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 17 Jun 2026 16:14:50 +0800 Subject: [PATCH] fix: menu and index.ui point directly to CRUD lists instead of iframe wrappers --- wwwroot/index.ui | 6 +++--- wwwroot/menu.ui | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wwwroot/index.ui b/wwwroot/index.ui index 6325648..5dd7f22 100644 --- a/wwwroot/index.ui +++ b/wwwroot/index.ui @@ -56,7 +56,7 @@ "actiontype": "urlwidget", "target": "app.product_content", "options": { - "url": "{{entire_url('category_manage.ui')}}" + "url": "{{entire_url('product_category_tree')}}" }, "mode": "replace" } @@ -92,7 +92,7 @@ "actiontype": "urlwidget", "target": "app.product_content", "options": { - "url": "{{entire_url('product_manage.ui')}}" + "url": "{{entire_url('product_list')}}" }, "mode": "replace" } @@ -128,7 +128,7 @@ "actiontype": "urlwidget", "target": "app.product_content", "options": { - "url": "{{entire_url('product_type_config_manage.ui')}}" + "url": "{{entire_url('product_type_config_list')}}" }, "mode": "replace" } diff --git a/wwwroot/menu.ui b/wwwroot/menu.ui index be50c14..30125f1 100644 --- a/wwwroot/menu.ui +++ b/wwwroot/menu.ui @@ -6,9 +6,9 @@ "cwidth": 10, "items": [ {% if get_user() %} - {"name": "category", "label": "产品类别管理", "url": "{{entire_url('/product_management/category_manage.ui')}}"}, - {"name": "product", "label": "产品管理", "url": "{{entire_url('/product_management/product_manage.ui')}}"}, - {"name": "config", "label": "运营商配置", "url": "{{entire_url('/product_management/product_type_config_manage.ui')}}"} + {"name": "category", "label": "产品类别管理", "url": "{{entire_url('/product_management/product_category_tree')}}"}, + {"name": "product", "label": "产品管理", "url": "{{entire_url('/product_management/product_list')}}"}, + {"name": "config", "label": "运营商配置", "url": "{{entire_url('/product_management/product_type_config_list')}}"} {% endif %} ] }