| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- export default [
- {
- path: "/activity"
- // component: () => import("@views/home/index.vue")
- },
- {
- path: "/activity/poster/:id/:type",
- name: "Poster",
- meta: {
- title: "海报",
- keepAlive: false,
- backgroundColor: "#d22516",
- auth: true
- },
- component: () => import("@views/activity/Poster.vue")
- },
- {
- path: "/activity/dargain_detail/:id/:partake?",
- name: "DargainDetails",
- meta: {
- title: "砍价详情",
- keepAlive: false,
- backgroundColor: "#e93323",
- auth: true
- },
- component: () => import("@views/activity/DargainDetails.vue")
- },
- {
- path: "/activity/bargain",
- name: "GoodsBargain",
- meta: {
- title: "砍价列表",
- keepAlive: false,
- backgroundColor: "#e93323"
- },
- component: () => import("@views/activity/GoodsBargain.vue")
- },
- // {
- // path: "/activity/bargain/record",
- // name: "BargainRecord",
- // meta: {
- // title: "砍价记录",
- // keepAlive: true,
- // auth: true
- // },
- // component: () => import("@views/activity/BargainRecord.vue")
- // },
- {
- path: "/activity/bargain/record",
- name: "Message",
- meta: {
- idx: 6,
- title: "消息中心",
- keepAlive: true,
- auth: true
- },
- component: () => import("@views/user/Message.vue")
- },
- {
- path: "/message/detail/:id",
- name: "MessageDetail",
- meta: {
- idx: 7,
- title: "消息详情",
- keepAlive: true,
- auth: true
- },
- component: () => import("@views/user/MessageDetail.vue")
- },
- {
- path: "/activity/group",
- name: "GoodsGroup",
- meta: {
- title: "拼团列表",
- keepAlive: false,
- backgroundColor: "#fa533d"
- },
- component: () => import("@views/activity/GoodsGroup.vue")
- },
- {
- path: "/activity/group_detail/:id",
- name: "GroupDetails",
- meta: {
- title: "拼团详情",
- keepAlive: false
- },
- component: () => import("@views/activity/GroupDetails.vue")
- },
- {
- path: "/activity/group_rule/:id",
- name: "GroupRule",
- meta: {
- title: "拼团",
- keepAlive: true,
- auth: true
- },
- component: () => import("@views/activity/GroupRule.vue")
- },
- {
- path: "/activity/goods_seckill",
- name: "GoodsSeckill",
- meta: {
- title: "限时抢购",
- keepAlive: true,
- backgroundColor: "#ffffff"
- },
- component: () => import("@views/activity/GoodsSeckill.vue")
- },
- {
- path: "/activity/seckill_detail/:id?/:time?/:status?",
- name: "SeckillDetails",
- meta: {
- title: "抢购详情页",
- keepAlive: false
- },
- component: () => import("@views/activity/SeckillDetails.vue")
- }
- ];
|