Background.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. /**
  17. * 背景图管理
  18. * Class GoodsCate
  19. * @package app\store\controller
  20. */
  21. class Background extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'store_background';
  28. /**
  29. * 背景图管理
  30. * @auth true
  31. * @menu true
  32. * @throws \think\Exception
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. * @throws \think\exception\PDOException
  37. */
  38. public function index()
  39. {
  40. $this->title = '背景图管理';
  41. $query = $this->_query($this->table);
  42. $query->where(['is_deleted' => '0'])->order('sort desc,id desc')->page();
  43. }
  44. /**
  45. * 添加背景图
  46. * @auth true
  47. * @throws \think\Exception
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. * @throws \think\exception\DbException
  51. * @throws \think\exception\PDOException
  52. */
  53. public function add()
  54. {
  55. $this->title = '添加背景图';
  56. $this->_form($this->table, 'form');
  57. }
  58. /**
  59. * 编辑背景图
  60. * @auth true
  61. * @throws \think\Exception
  62. * @throws \think\db\exception\DataNotFoundException
  63. * @throws \think\db\exception\ModelNotFoundException
  64. * @throws \think\exception\DbException
  65. * @throws \think\exception\PDOException
  66. */
  67. public function edit()
  68. {
  69. $this->title = '编辑背景图';
  70. $this->_form($this->table, 'form');
  71. }
  72. /**
  73. * 禁用背景图
  74. * @auth true
  75. * @throws \think\Exception
  76. * @throws \think\exception\PDOException
  77. */
  78. public function forbid()
  79. {
  80. $this->_save($this->table, ['status' => '0']);
  81. }
  82. /**
  83. * 启用背景图
  84. * @auth true
  85. * @throws \think\Exception
  86. * @throws \think\exception\PDOException
  87. */
  88. public function resume()
  89. {
  90. $this->_save($this->table, ['status' => '1']);
  91. }
  92. /**
  93. * 删除背景图
  94. * @auth true
  95. * @throws \think\Exception
  96. * @throws \think\exception\PDOException
  97. */
  98. public function remove()
  99. {
  100. $this->_delete($this->table);
  101. }
  102. }