123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /**
- * 页面展示列表数据
- */
- export default {
- data: [{
- title: '首次更新',
- list: [{
- icon: 'code',
- title: '月薪清单 + 五险一金明细',
- color: 'red',
- url: '/vipPages/salary',
- author: '图鸟北北'
- },{
- icon: 'code',
- title: '收益明细 + 收益趋势预测',
- color: 'green',
- url: '/vipPages/income',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '粉丝明细 + 访问流量分析',
- color: 'blue',
- url: '/vipPages/diagnosis',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '运动效果 + 训练表现监控',
- color: 'cyan',
- url: '/vipPages/sport',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '理财持仓 + 市值盈亏份额',
- color: 'bluepurple',
- url: '/vipPages/manage',
- author: '图鸟北北'
- }
- ]
- },
- {
- title: '二次更新',
- list: [{
- icon: 'code',
- title: '文件类型 + 存储空间占用',
- color: 'indigo',
- url: '/vipPages/file',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '账单明细 + 资产理财统计',
- color: 'aquablue',
- url: '/vipPages/bank',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '微信群组 + 成员分析统计',
- color: 'teal',
- url: '/vipPages/group',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '用户画像 + 客户画像分析',
- color: 'orangered',
- url: '/vipPages/portrait',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '暗黑风格 + 可视化趋势图',
- color: 'grey',
- url: '/vipPages/black',
- author: '图鸟北北'
- },
- {
- icon: 'code',
- title: '持续更新,感恩会员大佬们的支持',
- color: 'orange',
- url: '/vipPages/xxxx',
- author: '图鸟北北'
- }
- ]
- }
- ]
- }
|