1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
| import { AppstoreOutlined, ToolOutlined, MacCommandOutlined, FolderOpenOutlined, DashboardOutlined, PieChartOutlined, SettingOutlined } from '@ant-design/icons'; import { Link } from 'react-router-dom';
const leftMenus = [ { // label: '全部产品', label: ( <Link to="/product">全部产品</Link>), key:'/product', icon: <AppstoreOutlined /> }, { // label: '素材管理', label: ( <Link to="/source">素材管理</Link>), key:'/source', icon: <FolderOpenOutlined /> }, { label: '公共模块', key:'/ad', icon: <MacCommandOutlined />, children: [ { // label: '权限管理', label: ( <Link to="/ad/account">权限管理</Link>), key:'/ad/account', icon: '' }, { // label: '用户管理', label: ( <Link to="/ad/user">用户管理</Link>), key:'/ad/user', icon: '' }, { // label: '账户管理', label: ( <Link to="/ad/agent">账户管理</Link>), key:'/ad/agent', icon: '' }, { // label: '项目管理', label: ( <Link to="/ad/group">项目管理</Link>), key:'/ad/group', icon: '' }, { // label: '渠道管理', label: ( <Link to="/ad/channel">渠道管理</Link>), key:'/ad/channel', icon: '' }, { // label: '设备管理', label: ( <Link to="/ad/device">设备管理</Link>), key:'/ad/device', icon: '' }, { // label: '推广参数设置', label: ( <Link to="/ad/config">推广参数设置</Link>), key:'/ad/config', icon: '' }, ] }, { key:'/dashboard', label: '仪表盘', icon: <DashboardOutlined />, children: [ { // label: '总览', label: ( <Link to="/dashboard/overview">总览</Link>), key:'/dashboard/overview', icon: '' }, { // label: '实时', label: ( <Link to="/dashboard/realtime">实时</Link>), key:'/dashboard/realtime', icon: '' }, { // label: '渠道效果对比', label: ( <Link to="/dashboard/channeleffect">渠道效果对比</Link>), key:'/dashboard/channeleffect', icon: '' }, ] }, { key:'/collect', label: '报表', icon: <PieChartOutlined />, children: [ { // label: '分包推广详情', label: ( <Link to="/collect/subpackage">分包推广详情</Link>), key:'/collect/subpackage', icon: '' }, { // label: 'SEM活动详情', label: ( <Link to="/collect/sem">SEM活动详情</Link>), key:'/collect/sem', icon: '' }, { // label: '激活延迟分析', label: ( <Link to="/collect/effectevaluate">激活延迟分析</Link>), key:'/collect/effectevaluate', icon: '' }, ] }, { key:'/tool', label: '工具', icon: <ToolOutlined />, children: [ { // label: '归因查询', label: ( <Link to="/tool/attribute">归因查询</Link>), key:'/tool/attribute', icon: '' }, { // label: '日志流', label: ( <Link to="/tool/logtool">日志流</Link>), key:'/tool/logtool', icon: '' }, ] }, { key:'/manage', label: '配置', icon: <SettingOutlined />, children: [ { // label: '推广回调管理', label: ( <Link to="/manage/datacb">推广回调管理</Link>), key:'/manage/datacb', icon: '' }, { // label: '埋点管理', label: ( <Link to="/manage/customevent">埋点管理</Link>), key:'/manage/customevent', icon: '' }, ] }, ]
export default leftMenus;
|