This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/controller/Wxapp.php
2020-04-25 22:20:29 +08:00

40 lines
787 B
PHP

<?php
namespace app\api\controller;
use app\api\model\Wxapp as WxappModel;
use app\api\model\WxappHelp;
/**
* 微信小程序
* Class Wxapp
* @package app\api\controller
*/
class Wxapp extends Controller
{
/**
* 小程序基础信息
* @return array
*/
public function base()
{
// $wxapp = WxappModel::getWxappCache();
return $this->renderSuccess([]);
}
/**
* 帮助中心
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function help()
{
$model = new WxappHelp;
$list = $model->getList();
return $this->renderSuccess(compact('list'));
}
}