GoodsCate.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 GoodsCate extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'StoreGoodsCate';
  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)->like('title')->equal('status');
  42. $query->where(['is_deleted' => '0'])->order('sort desc,id desc')->page();
  43. }
  44. /**
  45. * 添加商品分类
  46. * @auth true
  47. */
  48. public function add()
  49. {
  50. $this->title = '添加商品分类';
  51. $this->_form($this->table, 'form');
  52. }
  53. /**
  54. * 编辑商品分类
  55. * @auth true
  56. */
  57. public function edit()
  58. {
  59. $this->title = '编辑商品分类';
  60. $this->_form($this->table, 'form');
  61. }
  62. /**
  63. * 禁用商品分类
  64. * @auth true
  65. */
  66. public function forbid()
  67. {
  68. $this->_save($this->table, ['status' => '0']);
  69. }
  70. /**
  71. * 启用商品分类
  72. * @auth true
  73. */
  74. public function resume()
  75. {
  76. $this->_save($this->table, ['status' => '1']);
  77. }
  78. /**
  79. * 删除商品分类
  80. * @auth true
  81. */
  82. public function remove()
  83. {
  84. $this->_delete($this->table);
  85. }
  86. }