Slider.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. /**
  5. * 轮播图片管理
  6. * Class Slider
  7. * @package app\store\controller
  8. */
  9. class Slider extends Controller
  10. {
  11. /**
  12. * 轮播图片管理
  13. * @auth true
  14. * @menu true
  15. * @throws \think\Exception
  16. * @throws \think\exception\PDOException
  17. */
  18. public function home()
  19. {
  20. $this->size = '600 * 350';
  21. $this->keys = 'slider_home';
  22. $this->title = '轮播图片管理';
  23. $this->desc = "建议上传图片尺寸 {$this->size}";
  24. $this->_apply('index');
  25. }
  26. /**
  27. * 显示与管理
  28. * @param string $tpl 模板名称
  29. * @throws \think\Exception
  30. * @throws \think\exception\PDOException
  31. */
  32. private function _apply($tpl)
  33. {
  34. if ($this->request->isGet()) {
  35. $this->list = sysdata($this->keys);
  36. $this->fetch($tpl);
  37. } else {
  38. if (sysdata($this->keys, json_decode($this->request->post('data'), true))) {
  39. $this->success('数据保存成功!', '');
  40. } else {
  41. $this->error('数据保存失败,请稍候再试!');
  42. }
  43. }
  44. }
  45. }