Files
zyt/server/sql/1.9.20260420/add_conversion_stats_menu.sql
T
2026-05-11 17:49:38 +08:00

17 lines
883 B
SQL
Executable File

-- 新增综合转化统计菜单
-- 页面路径: /stats/conversion
-- 前端组件: /stats/conversion/index
-- 查询权限: stats.conversion/overview
INSERT INTO `zyt_system_menu`
(`pid`, `type`, `name`, `icon`, `sort`, `perms`, `paths`, `component`, `selected`, `params`, `is_show`, `is_disable`, `create_time`, `update_time`)
VALUES
(0, 'M', '数据统计', 'el-icon-DataAnalysis', 160, '', '/stats', '', '', '', 1, 0, UNIX_TIMESTAMP(), UNIX_TIMESTAMP());
SET @stats_root_id = LAST_INSERT_ID();
INSERT INTO `zyt_system_menu`
(`pid`, `type`, `name`, `icon`, `sort`, `perms`, `paths`, `component`, `selected`, `params`, `is_show`, `is_disable`, `create_time`, `update_time`)
VALUES
(@stats_root_id, 'C', '综合转化统计', '', 1, 'stats.conversion/overview', '/stats/conversion', '/stats/conversion/index', '', '', 1, 0, UNIX_TIMESTAMP(), UNIX_TIMESTAMP());