12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace app\api\controller;
- use app\models\page\PageModel;
- use app\Request;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- class PublicController
- {
-
- public function index(Request $request)
- {
- $banner = sys_data('home_banner', 0, 1) ?: [];
- $menus = sys_data('home_menus', 0, 1) ?: [];
- $pics = sys_data('home_pics', 0, 1) ?: [];
- return app('json')->successful(compact('banner', 'menus', 'pics'));
- }
- public function page($unique)
- {
- $info = PageModel::where('is_del', 0)->where('unique', $unique)->find()->toArray();
- return app('json')->successful($info);
- }
- public function teacher(Request $request)
- {
- $teacher = sys_data('teacher_team', 0, 1) ?: [];
- return app('json')->successful($teacher);
- }
-
- public function share(Request $request)
- {
- $mer_id = $request->mer_id();
- $data['img'] = sys_config('wechat_share_img', '', $mer_id);
- if (strstr($data['img'], 'http') === false) $data['img'] = sys_config('site_url', '', $mer_id) . $data['img'];
- $data['img'] = str_replace('\\', '/', $data['img']);
- $data['title'] = sys_config('wechat_share_title', '', $mer_id);
- $data['synopsis'] = sys_config('wechat_share_synopsis', '', $mer_id);
- return app('json')->successful(compact('data'));
- }
- }
|