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.
39 lines
787 B
39 lines
787 B
<?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'));
|
|
}
|
|
|
|
}
|
|
|