-- 企业微信配置菜单 -- 在系统管理(parent_id=1)下添加企业微信配置菜单 -- 注意:path 必须是相对路径(如 wecom-config),否则会和父路径叠加成 /system/system/... -- 先检查是否已存在 DELETE FROM `sys_menu` WHERE menu_name = '企业微信配置'; INSERT INTO `sys_menu` (menu_name, parent_id, order_num, path, component, query_param, is_frame, is_cache, menu_type, visible, status, perms, icon, create_dept, create_by, create_time, update_by, update_time, remark) VALUES ('企业微信配置', 1, 99, 'wecom-config', 'system/wecom-config/index', '', 1, 0, 'C', '0', '0', 'system:wecom:config', 'simple-icons:wechat', 103, 1, NOW(), NULL, NULL, '企业微信配置菜单');