-- 在用户管理菜单下添加"价格套餐管理"菜单项 -- 参考其他菜单项的配置格式 INSERT INTO sys_menu ( name, parent_id, model_id, form_id, icon, path, component, api_path, is_show_menu, is_show, type, sort, create_time, last_modify_time, is_delete ) VALUES ( '价格套餐管理', -- 菜单名称 120, -- parent_id: 用户管理菜单的ID 0, -- model_id 0, -- form_id 'md-pricetags', -- icon: 价格标签图标 'pricing_plans', -- path: 路由路径 'system/pricing_plans.vue', -- component: 组件路径(已在 component-map.js 中定义) 'system/pricing_plans_server.js', -- api_path: API 服务文件路径 1, -- is_show_menu: 1=显示在菜单栏 1, -- is_show: 1=启用 '页面', -- type: 页面类型 3, -- sort: 排序(可根据实际情况调整) NOW(), -- create_time: 创建时间 NOW(), -- last_modify_time: 最后修改时间 0 -- is_delete: 0=未删除 );