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