GoodsCate.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\store\controller;
  14. use library\Controller;
  15. /**
  16. * Class GoodsCate
  17. * @package app\store\controller
  18. */
  19. class GoodsCate extends Controller
  20. {
  21. /**
  22. * 绑定数据表
  23. * @var string
  24. */
  25. protected $table = 'StoreGoodsCate';
  26. /**
  27. * @return mixed
  28. * @throws \think\Exception
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @throws \think\exception\DbException
  32. * @throws \think\exception\PDOException
  33. */
  34. public function index()
  35. {
  36. $this->title = '商品分类管理';
  37. return $this->_query($this->table)->like('title')->equal('status')->order('sort asc,id desc')->page();
  38. }
  39. /**
  40. * 添加商品分类信息
  41. * @return mixed
  42. */
  43. public function add()
  44. {
  45. $this->title = '添加商品分类';
  46. return $this->_form($this->table, 'form');
  47. }
  48. /**
  49. * 编辑商品分类信息
  50. * @return mixed
  51. */
  52. public function edit()
  53. {
  54. $this->title = '编辑商品分类';
  55. return $this->_form($this->table, 'form');
  56. }
  57. /**
  58. * 商品分类禁用
  59. */
  60. public function forbid()
  61. {
  62. $this->_save($this->table, ['status' => '0']);
  63. }
  64. /**
  65. * 商品分类禁用
  66. */
  67. public function resume()
  68. {
  69. $this->_save($this->table, ['status' => '1']);
  70. }
  71. /**
  72. * 删除商品分类
  73. */
  74. public function del()
  75. {
  76. $this->_delete($this->table);
  77. }
  78. }