🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 获取菜单列表 **简要描述:** * 获取菜单列表 **请求URL:** * /wechat/menu/findPage **请求方式:** * POST **返回参数** | | 参数名 | 必选 | 类型 | 说明 | | --- | --- | --- | --- | ---| ---| | | id| 是 | int | id | | | name| 是 | string| 名称 | | | content| 是| string|array| 内容 | | | parent_id| 是| int| 父id | | | type| 是| string| 类别 'miniprogram','click','view' | | | sort| 是| int| 排序 | | | add_time| 是| string| 创建时间 | | | sub_button| 是 | array | 子菜单 | ## | id| 是 | int | id | ## | name| 是 | string| 名称 | ## | content| 是| string|array| 内容 | ## | parent_id| 是| int| 父id | ## | type| 是| string| 类别 'miniprogram','click','view' | ## | sort| 是| int| 排序 | ## | add_time| 是| string| 创建时间 | **返回示例** ~~~ { { "msg": "success", "data": [{ "id": 1, "name": "一级菜单1", "content": "", "parent_id": 0, "type": "", "sort": 1, "add_time": "2020-08-29 13:28:37", "sub_button": [{ "id": 2, "name": "子菜单", "content": "你好", "parent_id": 1, "type": "click", "sort": 1, "add_time": "2020-08-29 13:28:37", }, { "id": 3, "name": "子菜单2", "content": "http://www.baidu.com", "parent_id": 1, "type": "view", "sort": 2, "add_time": "2020-08-29 13:28:37", }, { "id": 4, "name": "子菜单3", "content": { "url": "http://mp.weixin.qq.com", "appid": "wx286b93c14bbf93aa", "pagepath": "pages/lunar/index" }, "parent_id": 1, "type": "miniprogram", "sort": 3, "add_time": "2020-08-29 13:28:37", } ] }, { "id": 4, "name": 一级菜单2, } ] "code": 200 } ~~~