1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- export default [
- {
- path: '/search',
- name: 'search',
- component: () => import('@/views/Search.vue'),
- meta: {
- title: '剑鱼文库',
- layoutConf: true,
- hideBorder: true
- }
- },
- {
- 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: '剑鱼标讯线上服务条款'
- }
- }
- ]
|