[TOC]
![](https://box.kancloud.cn/2015-11-18_564c768b00d57.jpg)
## 定义扩展菜单 manifest.xml
### web端
#### **menu 节点**
> 模块管理后台扩展菜单
~~~
<menu call="getMenus">
<entry title="分类管理" do="category" state="" direct="false" />
<entry title="商品管理" do="goods" state="" direct="false" />
<entry title="订单管理" do="orders" state="" direct="false" />
</menu>
~~~
### APP端
#### **home 节点**
> 微站首页导航设置。
~~~
<home call="getHomes">
<entry title="便利店首页" do="store" state="" direct="true" />
</home>
~~~
#### **profile 节点**
> 微站个人中心快捷导航设置。
~~~
<profile call="getProfiles">
<entry title="我的订单" do="orders" state="" direct="false" />
</profile>
~~~
#### **shortcut 节点**
> 微站首页快捷导航设置
~~~
<shortcut call="getShortcuts">
<entry title="便利店订单" do="orders" state="" direct="false" />
</shortcut>
~~~