| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\api\controller;
- use app\api\model\WxappPage;
- /**
- * 页面控制器
- * Class Index
- * @package app\api\controller
- */
- class Page extends Controller
- {
- /**
- * 页面数据
- * @param null $page_id
- * @return array
- * @throws \app\common\exception\BaseException
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- public function index($page_id = null)
- {
- // 页面元素
- $data = WxappPage::getPageData($this->getUser(false), $page_id);
- return $this->renderSuccess($data);
- }
- }
|