Skip to content

Commit d6a3663

Browse files
修改菜菜单
1 parent 48d2bb3 commit d6a3663

File tree

3 files changed

+101
-6
lines changed

3 files changed

+101
-6
lines changed

README-zh.md

+73
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,77 @@ npm run build --report
2929

3030
Copyright (c) 2018
3131

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+
32105

src/router/index.js

+12-6
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,23 @@ export const constantRouterMap = [
4444
name: 'Example',
4545
meta: { title: '商品管理', icon: 'goods' },
4646
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+
},
4759
{
4860
path: 'table',
4961
name: 'Table',
5062
component: () => import('@/views/table/index'),
5163
meta: { title: '商品目录管理', icon: 'goodslist' }
52-
},
53-
{
54-
path: 'tree',
55-
name: 'Tree',
56-
component: () => import('@/views/tree/index'),
57-
meta: { title: '商品分类管理', icon: 'goodscategory' }
5864
}
5965
]
6066
},

src/views/goods/goodscategory.vue

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+

0 commit comments

Comments
 (0)