1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| export default {
| path: 'productPrice/',
| name: 'productPrice',
| children: [
| {
| path: 'list',
| name: 'productList',
| component: () => import('@/views/productManage/product/index.vue'),
| meta: {
| title: '产品列表',
| keepAlive: true,
| },
| },
| {
| path: 'price/:productId',
| name: 'price',
| component: () => import('@/views/productManage/price/index.vue'),
| meta: {
| title: '定价管理',
| keepAlive: true,
| },
| },
| {
| path: 'order',
| name: 'productOrder',
| component: () => import('@/views/productManage/productOrderDialog/index.vue'),
| meta: {
| title: '产品订单',
| keepAlive: true,
| },
| },
| {
| path: 'priceViewer',
| name: 'productPriceViewer',
| component: () => import('@/views/productManage/productPriceViewer/index.vue'),
| meta: {
| title: '查看报价',
| keepAlive: true,
| },
| },
| ],
| meta: {
| title: '定价管理',
| type: true,
| },
| }
|
|