123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- /**
- * 页面展示列表数据
- */
- export default {
- data: [{
- title: '首次更新',
- list: [{
- icon: 'code',
- title: '销售统计',
- color: 'purplered',
- url: '/newsPages/pages1',
- author: '图鸟真菜'
- },{
- icon: 'code',
- title: '考勤打卡',
- color: 'bluepurple',
- url: '/newsPages/pages2',
- author: '图鸟黑粉'
- },
- {
- icon: 'code',
- title: '访客统计',
- color: 'red',
- url: '/newsPages/pages3',
- author: '心之所向'
- },
- {
- icon: 'code',
- title: '学生体检',
- color: 'aquablue',
- url: '/newsPages/pages4',
- author: '请叫我神秘人'
- },
- {
- icon: 'code',
- title: '温度检测',
- color: 'orangered',
- url: '/newsPages/pages5',
- author: '哎哟你干嘛'
- }
- ]
- },
- {
- title: '二次更新',
- list: [{
- icon: 'code',
- title: '收入支出',
- color: 'blue',
- url: '/newsPages/pages6',
- author: '心若向阳'
- },
- {
- icon: 'code',
- title: '营业目标',
- color: 'orange',
- url: '/newsPages/pages7',
- author: '无名之辈'
- },
- {
- icon: 'code',
- title: '营业统计',
- color: 'indigo',
- url: '/newsPages/pages8',
- author: '那只猪'
- },
- {
- icon: 'code',
- title: '库存统计',
- color: 'orangeyellow',
- url: '/newsPages/pages9',
- author: '你的名字'
- },
- {
- icon: 'code',
- title: '收益来源',
- color: 'cyan',
- url: '/newsPages/pages10',
- author: '哒咩哒咩'
- },
- {
- icon: 'code',
- title: '区域销售',
- color: 'lime',
- url: '/newsPages/pages11',
- author: '你的名字'
- },
- {
- icon: 'code',
- title: '月度下载',
- color: 'teal',
- url: '/newsPages/pages12',
- author: '你的名字'
- },
- {
- icon: 'code',
- title: '公司股价',
- color: 'yellowgreen',
- url: '/newsPages/pages13',
- author: '你的名字'
- },
- {
- icon: 'code',
- title: '运动数据',
- color: 'green',
- url: '/newsPages/pages14',
- author: '不许爱我'
- }
- ]
- }
- ]
- }
|