安徽博创起重服务端程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
546 B

<?php
namespace app\admin\controller\wechat;
use app\common\basics\AdminBase;
use app\admin\logic\wechat\HfiveLogic;
use app\common\server\JsonServer;
class Hfive extends AdminBase
{
/**
* H5商城设置
*/
public function set()
{
if($this->request->isPost()) {
$params = $this->request->post();
HfiveLogic::set($params);
return JsonServer::success('设置成功');
}
$config = HfiveLogic::getConfig();
return view('set', ['config' => $config]);
}
}