packageList.js 924 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. const equity = ['VIP会员标识', '简历刷新次数', '简历屏蔽', '优先推荐', '简历模板', '谁看过我', '薪酬报告']
  2. export const packData = [
  3. {
  4. title: '14天双周卡',
  5. price: 1, // 128
  6. type: '3',
  7. spuId: '3', // 编号
  8. equity,
  9. showLength: 3,
  10. vipFlag: '14'
  11. },
  12. {
  13. title: '30天月卡',
  14. price: 198,
  15. type: '4',
  16. spuId: '4', // 编号
  17. equity,
  18. showLength: 4,
  19. vipFlag: '30'
  20. },
  21. {
  22. title: '60天月卡',
  23. price: 318,
  24. type: '5',
  25. recommend: true,
  26. spuId: '5', // 编号
  27. equity,
  28. showLength: 5,
  29. vipFlag: '60'
  30. },
  31. {
  32. title: '90天月卡',
  33. price: 378,
  34. type: '6',
  35. spuId: '6', // 编号
  36. equity,
  37. showLength: 6,
  38. vipFlag: '90'
  39. },
  40. {
  41. title: '年度卡',
  42. price: 999,
  43. // cycle: '6个月',
  44. type: '7',
  45. spuId: '7', // 编号
  46. equity,
  47. showLength: 7,
  48. vipFlag: '365'
  49. }
  50. ]