mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
namespace app\admin\controller\wechat;
|
|
|
|
use app\admin\controller\AuthController;
|
|
use crmeb\services\WechatService;
|
|
use think\facade\Db;
|
|
|
|
/**
|
|
* 微信菜单 控制器
|
|
* Class Menus
|
|
* @package app\admin\controller\wechat
|
|
*/
|
|
class Menus extends AuthController
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
$menus = Db::name('cache')->where('key','wechat_menus')->value('result');
|
|
$menus = $menus ? : '[]';
|
|
$this->assign('menus',$menus);
|
|
return $this->fetch();
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
$buttons = request()->post('button/a',[]);
|
|
if(!count($buttons)) return $this->failed('请添加至少一个按钮');
|
|
try{
|
|
WechatService::menuService()->add($buttons);
|
|
$count = Db::name('cache')->where('key', 'wechat_menus')->count();
|
|
if($count){
|
|
$count = Db::name('cache')->where('key', 'wechat_menus')->where('result', json_encode($buttons))->count();
|
|
if(!$count)
|
|
Db::name('cache')->where('key', 'wechat_menus')->update(['result'=>json_encode($buttons),'add_time'=>time()]);
|
|
}else
|
|
Db::name('cache')->insert(['key'=>'wechat_menus','result'=>json_encode($buttons),'add_time'=>time()],true);
|
|
return $this->successful('修改成功!');
|
|
}catch (\Exception $e){
|
|
return $this->failed($e->getMessage());
|
|
}
|
|
}
|
|
} |