Files
MES/yawei-mes/.sql/2026-03-13_00_周启威_调整菜单顺序.sql
2026-04-02 10:39:03 +08:00

32 lines
1.2 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- ============================================================
-- 调整菜单顺序
-- 版本v2.0.008 日期2026-03-13 作者:周启威
-- ============================================================
-- 调整FIIH质量管理菜单顺序为8
UPDATE sys_menu SET order_num = 8
WHERE path = 'fiihupgrade';
-- 调整能耗管理菜单顺序为10
UPDATE sys_menu SET order_num = 10
WHERE path = '/energy';
-- 调整安全管理菜单顺序为10
UPDATE sys_menu SET order_num = 10
WHERE path = 'safe';
-- ============================================================
-- 为能耗管理添加合适的图标
-- ============================================================
-- 将能耗管理的图标从 'fa-solid:water' 改为 'fa-solid:bolt'(闪电图标,更符合能耗主题)
UPDATE sys_menu SET icon = 'fa-solid:bolt'
WHERE path = '/energy' AND menu_name = '能耗管理';
-- 说明:
-- fa-solid:bolt - 闪电图标,代表电力/能源
-- 其他可选图标:
-- - 'fa-solid:charging-station' - 充电站图标
-- - 'fa-solid:plug' - 插头图标
-- - 'fa-solid:fire' - 火焰图标(代表能源消耗)
-- - 'ep:lightning' - Element Plus 闪电图标