File tree 3 files changed +101
-6
lines changed
3 files changed +101
-6
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,77 @@ npm run build --report
29
29
30
30
Copyright (c) 2018
31
31
32
+ 商品管理 goods
33
+ 商品信息管理 goodsinfo
34
+ 商品品类管理 goodscategory
35
+ 商品目录管理 goodslist
36
+ 商品分组管理 goodsgroup
37
+ 商品资质管理 goodsqualificantion
38
+ 商品上下架管理 goodsshelf
39
+ 上下架规则管理 shelfrule
40
+
41
+ 订单管理 ordermanagement
42
+ 销售订单管理 salesorder
43
+ 服务履约管理 service
44
+ 配送管理 distribution
45
+ 收款管理 income
46
+ 退款管理 back
47
+ 换货订单管理 exchange
48
+ 补货订单管理 patch
49
+ 退货订单管理 returngoods
50
+
51
+ 会员中心 member center
52
+ 会员信息查询 queryinfo
53
+ 客户信息查询 querycustomer
54
+ 会员权益管理 profit
55
+ 会员处理管理 handle
56
+ 会员等级管理 grade
57
+ 会员群组管理 membergroup
58
+ 会员积分规则 pointrule
59
+ 会员等级规则 graderule
60
+ 忠诚度计划定义
61
+ 会员等级定义
62
+ 积分类型定义
63
+ 权益类型定义
64
+
65
+ 营销管理 marketing
66
+ 营销资源 mresources
67
+ 营销方案 plan
68
+ 营销内容 content
69
+ 营销活动 activity
70
+
71
+ 库存管理 stock
72
+ 要货申请 apply
73
+ 调拨申请 transfer
74
+ 入库管理 instock
75
+ 出库管理 outstock
76
+ 库存盘点 checkstock
77
+ 库存查询 querystock
78
+ 业务查询 querybusiness
79
+ 配置管理 configmange
80
+
81
+ 医馆中心 hospital center
82
+ 医馆信息 hospitalinfo
83
+ 医馆排版 scheduling
84
+ 服务配置 serviceconfig
85
+ 字典编码 dictcode
86
+
87
+ 组织机构
88
+ 公司信息 company
89
+ 门店信息 shop
90
+ 用户管理 user
91
+ 角色管理 role
92
+ 权限管理 authority
93
+ 资源管理 resources
94
+ 短信模板 message
95
+ 字典管理 dictionary
96
+
97
+ 业务处理 business
98
+ 支付对账 paybill
99
+ 订单核对 ordercheck
100
+
101
+ 个人中心 personal center
102
+ 基本资料 basicinfo
103
+ 站内信息 information
104
+
32
105
Original file line number Diff line number Diff line change @@ -44,17 +44,23 @@ export const constantRouterMap = [
44
44
name : 'Example' ,
45
45
meta : { title : '商品管理' , icon : 'goods' } ,
46
46
children : [
47
+ {
48
+ path : 'tree' ,
49
+ name : 'Tree' ,
50
+ component : ( ) => import ( '@/views/tree/index' ) ,
51
+ meta : { title : '商品信息管理' , icon : 'table' }
52
+ } ,
53
+ {
54
+ path : 'goodscategory' ,
55
+ name : 'goodscategory' ,
56
+ component : ( ) => import ( '@/views/goods/goodscategory' ) ,
57
+ meta : { title : '商品品类管理' , icon : 'goodscategory' }
58
+ } ,
47
59
{
48
60
path : 'table' ,
49
61
name : 'Table' ,
50
62
component : ( ) => import ( '@/views/table/index' ) ,
51
63
meta : { title : '商品目录管理' , icon : 'goodslist' }
52
- } ,
53
- {
54
- path : 'tree' ,
55
- name : 'Tree' ,
56
- component : ( ) => import ( '@/views/tree/index' ) ,
57
- meta : { title : '商品分类管理' , icon : 'goodscategory' }
58
64
}
59
65
]
60
66
} ,
Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div id =" content" >
3
+ <h2 >商品品类管理内容</h2 >
4
+ </div >
5
+ </template >
6
+ <script >
7
+ export default {
8
+ data () {
9
+ return {
10
+ content: ' bar'
11
+ }
12
+ }
13
+ }
14
+ </script >
15
+
16
+
You can’t perform that action at this time.
0 commit comments