Files
autoAiWorkSys/_sql/1.sql
张成 5d7444cd65 1
2025-11-24 13:23:42 +08:00

33 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.
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: 与 pla_account 同级,都在"用户管理"(id=120)下
0, -- model_id
0, -- form_id
'md-person', -- icon: 与 pla_account 相同
'pla_account_detail', -- path: 路由路径
'account/pla_account_detail.vue', -- component: 组件路径(已在 component-map.js 中定义)
'account/pla_account_server.js', -- api_path: API 服务文件路径
0, -- is_show_menu: 0=不可见菜单(不在菜单栏显示)
1, -- is_show: 1=启用
'页面', -- type: 页面类型
2, -- sort: 排序pla_account 是 1
NOW(), -- create_time: 创建时间
NOW(), -- last_modify_time: 最后修改时间
0 -- is_delete: 0=未删除
);