| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { StaticUrl } from '@/config'
- const { userMemberInfo } = storeToRefs(useUserStore())
- export const rightsList = [
- {
- id: 1,
- title: '全省中石化优惠',
- desc: '每升立减0.3元',
- icon: `${StaticUrl}/vip-zshyh.png`,
- route: '',
- },
- {
- id: 2,
- title: '市民请集合平台快消品',
- desc: '折扣率9.5折',
- icon: `${StaticUrl}/vip-ptkxp.png`,
- route: 'xsb-homeTabbar',
- },
- {
- id: 3,
- title: '全省贵阳城投充电桩优惠',
- desc: '每度电立减0.03元',
- icon: `${StaticUrl}/vip-cdzyh.png`,
- route: 'charge-index',
- },
- {
- id: 4,
- title: '贵阳城投停车场优惠',
- desc: '折扣率9.5折',
- icon: `${StaticUrl}/vip-tccyh.png`,
- route: '',
- },
- {
- id: 5,
- title: '优惠券',
- desc: `优惠券${userMemberInfo.value.couponCount}张`,
- icon: `${StaticUrl}/vip-yhq.png`,
- route: 'xsb-coupon',
- },
- {
- id: 6,
- title: '自选赠品',
- desc: `自选赠品${userMemberInfo.value.giftCount}个`,
- icon: `${StaticUrl}/vip-zxzp.png`,
- route: 'smqjh-giveaways-vip',
- },
- ]
|