Data.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\data\controller\api;
  3. use think\admin\Controller;
  4. /**
  5. * 基础数据接口
  6. * Class Data
  7. * @package app\data\controller\api
  8. */
  9. class Data extends Controller
  10. {
  11. /**
  12. * 获取轮播图片数据
  13. * @throws \think\db\exception\DataNotFoundException
  14. * @throws \think\db\exception\DbException
  15. * @throws \think\db\exception\ModelNotFoundException
  16. */
  17. public function getSlider()
  18. {
  19. $data = sysdata(input('keys', 'slider'));
  20. $this->success('获取轮播图片数据', $data);
  21. }
  22. /**
  23. * 获取系统通知数据
  24. * @throws \think\db\exception\DataNotFoundException
  25. * @throws \think\db\exception\DbException
  26. * @throws \think\db\exception\ModelNotFoundException
  27. */
  28. public function getNotify()
  29. {
  30. $query = $this->_query('DataUserNotify')->where(['status' => 1, 'deleted' => 0]);
  31. $result = $query->equal('id')->order('sort desc,id desc')->page(true, false, false, 20);
  32. $this->success('获取系统通知数据', $result);
  33. }
  34. }