全栈小学生 e1d082e984 后台
2023-05-20 18:31:32 +08:00

46 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\wechat;
use app\service\admin\wechat\WechatTemplateService;
use core\base\BaseAdminController;
/**
* 微信公众号管理菜单
*/
class Template extends BaseAdminController
{
/**
* 菜单信息
* @return void
*/
public function sync(){
$data = $this->request->params([
['keys', []]
]);
$wechat_template_service = new WechatTemplateService();
return success($wechat_template_service->syncAll($data['keys']));
}
/**
* 模板消息
* @return \think\Response
*/
public function lists(){
$wechat_template_service = new WechatTemplateService();
return success($wechat_template_service->getList());
}
}