123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- const equity = ['VIP会员标识', '简历刷新次数', '简历屏蔽', '优先推荐', '简历模板', '谁看过我', '薪酬报告']
- export const packData = [
- {
- title: '14天双周卡',
- price: 1, // 128
- type: '3',
- spuId: '3', // 编号
- equity,
- showLength: 3,
- vipFlag: '14'
- },
- {
- title: '30天月卡',
- price: 198,
- type: '4',
- spuId: '4', // 编号
- equity,
- showLength: 4,
- vipFlag: '30'
- },
- {
- title: '60天月卡',
- price: 318,
- type: '5',
- recommend: true,
- spuId: '5', // 编号
- equity,
- showLength: 5,
- vipFlag: '60'
- },
- {
- title: '90天月卡',
- price: 378,
- type: '6',
- spuId: '6', // 编号
- equity,
- showLength: 6,
- vipFlag: '90'
- },
- {
- title: '年度卡',
- price: 999,
- // cycle: '6个月',
- type: '7',
- spuId: '7', // 编号
- equity,
- showLength: 7,
- vipFlag: '365'
- }
- ]
|