123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export default [
- {
- path: '/search',
- name: 'search',
- component: () => import('@/views/Search.vue'),
- meta: {
- title: '剑鱼文库'
- }
- },
- {
- path: '/purchasesuccess/:num',
- name: 'purchasesuccess',
- component: () => import('@/views/purchase/purchasesuccess.vue'),
- meta: {
- title: '剑鱼文库'
- }
- },
- {
- path: '/purchase/:id',
- name: 'purchase',
- component: () => import('@/views/purchase/purchase.vue'),
- meta: {
- title: '剑鱼文库'
- }
- },
- {
- path: '/details/:id',
- name: 'details',
- component: () => import('@/views/details/details.vue'),
- meta: {
- title: '文库详情',
- layoutConf: true
- }
- },
- {
- path: '/user/lib',
- name: 'userLibrary',
- component: () => import('@/views/user/Library.vue'),
- meta: {
- title: '我的文库'
- }
- },
- {
- path: '/onlineterm',
- name: 'onlineterm',
- component: () => import('@/views/purchase/onlineterm.vue'),
- meta: {
- title: '剑鱼标讯线上服务条款'
- }
- }
- ]
|