mirror of
				https://gitee.com/hhyykk/ipms-sjy.git
				synced 2025-10-31 10:18:42 +08:00 
			
		
		
		
	feat: CRM 客户公海配置
This commit is contained in:
		| @@ -0,0 +1,23 @@ | ||||
| -- 菜单 SQL | ||||
| INSERT INTO system_menu( | ||||
|     name, permission, type, sort, parent_id, | ||||
|     path, icon, component, status, component_name | ||||
| ) | ||||
| VALUES ( | ||||
|    '客户公海配置', '', 2, 0, 2397, | ||||
|    'customer-pool-config', 'ep:data-analysis', 'crm/customerPoolConf/index', 0, 'CustomerPoolConf' | ||||
| ); | ||||
|  | ||||
| -- 按钮父菜单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:customer-pool-config:update', 3, 1, @parentId, | ||||
|    '', '', '', 0 | ||||
| ); | ||||
		Reference in New Issue
	
	Block a user
	 Wanwan
					Wanwan