mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
48661f980c
* feat: CRM 线索表 crud * feat: CRM 线索表 crud
120 lines
2.9 KiB
Java
120 lines
2.9 KiB
Java
-- ----------------------------
|
||
-- 合同菜单
|
||
-- ----------------------------
|
||
|
||
-- 菜单 SQL
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status, component_name
|
||
)
|
||
VALUES (
|
||
'合同管理', '', 2, 0, 1254,
|
||
'contract', '', 'crm/contract/index', 0, 'Contract'
|
||
);
|
||
|
||
-- 按钮父菜单ID
|
||
-- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
|
||
SELECT @parentId := LAST_INSERT_ID();
|
||
|
||
-- 按钮 SQL
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'合同查询', 'crm:contract:query', 3, 1, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'合同创建', 'crm:contract:create', 3, 2, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'合同更新', 'crm:contract:update', 3, 3, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'合同删除', 'crm:contract:delete', 3, 4, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'合同导出', 'crm:contract:export', 3, 5, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
|
||
-- ----------------------------
|
||
-- 线索菜单
|
||
-- ----------------------------
|
||
|
||
-- 菜单 SQL
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status, component_name
|
||
)
|
||
VALUES (
|
||
'线索管理', '', 2, 0, 2375,
|
||
'clue', '', 'crm/clue/index', 0, 'CrmClue'
|
||
);
|
||
|
||
-- 按钮父菜单ID
|
||
-- 暂时只支持 MySQL。如果你是 Oracle、PostgreSQL、SQLServer 的话,需要手动修改 @parentId 的部分的代码
|
||
SELECT @parentId := LAST_INSERT_ID();
|
||
|
||
-- 按钮 SQL
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'线索查询', 'crm:clue:query', 3, 1, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'线索创建', 'crm:clue:create', 3, 2, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'线索更新', 'crm:clue:update', 3, 3, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'线索删除', 'crm:clue:delete', 3, 4, @parentId,
|
||
'', '', '', 0
|
||
);
|
||
INSERT INTO system_menu(
|
||
name, permission, type, sort, parent_id,
|
||
path, icon, component, status
|
||
)
|
||
VALUES (
|
||
'线索导出', 'crm:clue:export', 3, 5, @parentId,
|
||
'', '', '', 0
|
||
);
|