PublicController.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace app\api\controller;
  3. use app\models\page\PageModel;
  4. use app\Request;
  5. use think\db\exception\DataNotFoundException;
  6. use think\db\exception\DbException;
  7. use think\db\exception\ModelNotFoundException;
  8. /**
  9. * 公共类
  10. * Class PublicController
  11. * @package app\api\controller
  12. */
  13. class PublicController
  14. {
  15. /**
  16. * @param Request $request
  17. * @return mixed
  18. * @throws DataNotFoundException
  19. * @throws ModelNotFoundException
  20. * @throws DbException
  21. */
  22. public function index(Request $request)
  23. {
  24. $banner = sys_data('home_banner', 0, 1) ?: [];//TODO 首页轮播图
  25. $menus = sys_data('home_menus', 0, 1) ?: [];//TODO 首页导航
  26. $pics = sys_data('home_pics', 0, 1) ?: [];//TODO 首页展示图
  27. return app('json')->successful(compact('banner', 'menus', 'pics'));
  28. }
  29. public function page($unique)
  30. {
  31. $info = PageModel::where('is_del', 0)->where('unique', $unique)->find()->toArray();
  32. return app('json')->successful($info);
  33. }
  34. public function teacher(Request $request)
  35. {
  36. $teacher = sys_data('teacher_team', 0, 1) ?: [];//TODO 教师团队
  37. return app('json')->successful($teacher);
  38. }
  39. /**
  40. * 获取分享配置
  41. * @param Request $request
  42. * @return mixed
  43. */
  44. public function share(Request $request)
  45. {
  46. $mer_id = $request->mer_id();
  47. $data['img'] = sys_config('wechat_share_img', '', $mer_id);
  48. if (strstr($data['img'], 'http') === false) $data['img'] = sys_config('site_url', '', $mer_id) . $data['img'];
  49. $data['img'] = str_replace('\\', '/', $data['img']);
  50. $data['title'] = sys_config('wechat_share_title', '', $mer_id);
  51. $data['synopsis'] = sys_config('wechat_share_synopsis', '', $mer_id);
  52. return app('json')->successful(compact('data'));
  53. }
  54. }