添加赔率
This commit is contained in:
@@ -3,16 +3,16 @@ JOIN `la_system_menu` parent
|
||||
ON parent.`type` = 'M'
|
||||
AND parent.`paths` = 'match'
|
||||
SET child.`pid` = parent.`id`,
|
||||
child.`name` = '直播管理',
|
||||
child.`paths` = 'match_live',
|
||||
child.`component` = 'match/live/index',
|
||||
child.`selected` = '/match/lists',
|
||||
child.`is_show` = 0,
|
||||
child.`selected` = '',
|
||||
child.`is_show` = 1,
|
||||
child.`update_time` = UNIX_TIMESTAMP()
|
||||
WHERE child.`perms` = 'match.matchLive/index'
|
||||
AND child.`pid` <> parent.`id`;
|
||||
WHERE child.`perms` = 'match.matchLive/index';
|
||||
|
||||
INSERT INTO `la_system_menu` (`pid`, `type`, `name`, `icon`, `sort`, `perms`, `paths`, `component`, `selected`, `params`, `is_cache`, `is_show`, `is_disable`, `create_time`, `update_time`)
|
||||
SELECT parent.`id`, 'C', '直播线路管理', '', 0, 'match.matchLive/index', 'match_live', 'match/live/index', '/match/lists', '', 0, 0, 0, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()
|
||||
SELECT parent.`id`, 'C', '直播管理', '', 0, 'match.matchLive/index', 'match_live', 'match/live/index', '', '', 0, 1, 0, UNIX_TIMESTAMP(), UNIX_TIMESTAMP()
|
||||
FROM `la_system_menu` parent
|
||||
WHERE parent.`type` = 'M'
|
||||
AND parent.`paths` = 'match'
|
||||
|
||||
Reference in New Issue
Block a user