123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- // +----------------------------------------------------------------------
- // | Niucloud-admin 企业快速开发的saas管理平台
- // +----------------------------------------------------------------------
- // | 官方网址:https://www.niucloud.com
- // +----------------------------------------------------------------------
- // | niucloud团队 版权所有 开源版本可自由商用
- // +----------------------------------------------------------------------
- // | Author: Niucloud Team
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\wechat;
- use app\service\admin\wechat\WechatMenuService;
- use core\base\BaseAdminController;
- use EasyWeChat\Kernel\Exceptions\InvalidConfigException;
- use GuzzleHttp\Exception\GuzzleException;
- use think\Response;
- /**
- * 微信公众号管理菜单
- */
- class Menu extends BaseAdminController
- {
- /**
- * 菜单信息
- * @return Response
- */
- public function info()
- {
- $wechat_menu_service = new WechatMenuService();
- return success($wechat_menu_service->getInfo());
- }
- /**
- * 设置菜单
- * @return Response
- * @throws InvalidConfigException
- * @throws GuzzleException
- */
- public function edit()
- {
- $wechat_menu_service = new WechatMenuService();
- $data = $this->request->params([
- ['button', []]
- ]);
- $wechat_menu_service->edit($data['button']);
- return success('EDIT_SUCCESS');
- }
- }
|