vip-data.ts 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import { StaticUrl } from '@/config'
  2. const { userMemberInfo } = storeToRefs(useUserStore())
  3. export const rightsList = [
  4. {
  5. id: 1,
  6. title: '全省中石化优惠',
  7. desc: '每升立减0.3元',
  8. icon: `${StaticUrl}/vip-zshyh.png`,
  9. route: '',
  10. },
  11. {
  12. id: 2,
  13. title: '市民请集合平台快消品',
  14. desc: '折扣率9.5折',
  15. icon: `${StaticUrl}/vip-ptkxp.png`,
  16. route: 'xsb-homeTabbar',
  17. },
  18. {
  19. id: 3,
  20. title: '全省贵阳城投充电桩优惠',
  21. desc: '每度电立减0.03元',
  22. icon: `${StaticUrl}/vip-cdzyh.png`,
  23. route: 'charge-index',
  24. },
  25. {
  26. id: 4,
  27. title: '贵阳城投停车场优惠',
  28. desc: '折扣率9.5折',
  29. icon: `${StaticUrl}/vip-tccyh.png`,
  30. route: '',
  31. },
  32. {
  33. id: 5,
  34. title: '优惠券',
  35. desc: `优惠券${userMemberInfo.value.couponCount}张`,
  36. icon: `${StaticUrl}/vip-yhq.png`,
  37. route: 'xsb-coupon',
  38. },
  39. {
  40. id: 6,
  41. title: '自选赠品',
  42. desc: `自选赠品${userMemberInfo.value.giftCount}个`,
  43. icon: `${StaticUrl}/vip-zxzp.png`,
  44. route: 'smqjh-giveaways-vip',
  45. },
  46. ]