fix: menu and index.ui point directly to CRUD lists instead of iframe wrappers

This commit is contained in:
Hermes Agent 2026-06-17 16:14:50 +08:00
parent 9dcef6a1a9
commit 8fda537caa
2 changed files with 6 additions and 6 deletions

View File

@ -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"
}

View File

@ -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 %}
]
}