2023-10-12 16:48:43 +08:00

101 lines
2.5 KiB
JavaScript

import performanceIcon from '@/static/logon/performance.png';
import performanceActiveIcon from '@/static/logon/performance_active.png';
import manageIcon from '@/static/logon/manage.png';
import manageActiveIcon from '@/static/logon/manage_active.png';
import rankingIcon from '@/static/logon/ranking.png';
import rankingActiveIcon from '@/static/logon/ranking_active.png';
import myIcon from '@/static/logon/my.png';
import myActiveIcon from '@/static/logon/my_active.png';
// const novelManage = [{
// "pagePath": "/pages/novel/performance/performance",
// "icon": performanceIcon,
// "activeIcon": performanceActiveIcon,
// "name": "业绩",
// 'id' : '1',
// },{
// "pagePath": "/pages/novel/ranking/ranking",
// "icon": rankingIcon,
// "activeIcon": rankingActiveIcon,
// "name": "榜单",
// 'id' : '2',
// },{
// "pagePath": "/pages/novel/bookManagement/bookManagement",
// "icon": manageIcon,
// "activeIcon": manageActiveIcon,
// "name": "书籍管理",
// 'id' : '3',
// }];
const novelManage = [{
"pagePath": "/pages/performance/performance",
"iconPath": performanceIcon,
"selectedIconPath": performanceActiveIcon,
"text": "业绩",
'id' : '1',
'name': '1',
},{
"pagePath": "/pages/ranking/ranking",
"iconPath": rankingIcon,
"selectedIconPath": rankingActiveIcon,
"text": "榜单",
'id' : '2',
'name': '2',
},{
"pagePath": "/pages/manage/manage",
"iconPath": manageIcon,
"selectedIconPath": manageActiveIcon,
"text": "书籍管理",
'id' : '3',
'name' : '3'
}];
const shortPlayPerson = [{
"pagePath": "/pages/performance/performance",
"iconPath": performanceIcon,
"selectedIconPath": performanceActiveIcon,
"text": "业绩",
'id' : '1',
'name' : '1'
},
// {
// "pagePath": "/pages/shortPlay /ranking/ranking",
// "iconPath": rankingIcon,
// "selectedIconPath": rankingActiveIcon,
// "text": "业绩"
// },
{
"pagePath": "/pages/my/my",
"iconPath": myIcon,
"selectedIconPath": myActiveIcon,
"text": "我的",
'id' : '7',
'name' : '5'
}];
const shortPlayManage = [{
"pagePath": "/pages/performance/performance",
"iconPath": performanceIcon,
"selectedIconPath": performanceActiveIcon,
"text": "业绩",
'id' : '1',
'name' : '1'
},
// {
// "pagePath": "/pages/shortPlay /ranking/ranking",
// "iconPath": rankingIcon,
// "selectedIconPath": rankingActiveIcon,
// "text": "业绩"
// },
{
"pagePath": "/pages/manage/manage",
"iconPath": manageIcon,
"selectedIconPath": manageActiveIcon,
"text": "短剧管理",
'id' : '3',
'name' : '3'
}];
export {
novelManage,
shortPlayPerson,
shortPlayManage
}