Shop.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. namespace app\mall\controller;
  3. use app\common\model\User;
  4. use library\Controller;
  5. use think\Db;
  6. /**
  7. * 门店
  8. * Class Goods
  9. * @package app\mall\controller
  10. */
  11. class Shop extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. protected $table = 'Shop';
  18. /**
  19. * 列表
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $this->title = '列表';
  31. $query = $this->_query($this->table)
  32. ->alias('s')
  33. ->field('s.*,m.name user_name ,m.headimg')
  34. ->where('s.is_deleted',0)
  35. ->leftJoin('store_member m','m.id = s.user_id');
  36. $query->order(' s.sort desc , s.id desc')->page();
  37. }
  38. /**
  39. * 数据列表处理
  40. * @auth true
  41. * @menu true
  42. * @param array $data
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. * @throws \think\exception\DbException
  46. */
  47. protected function _index_page_filter(&$data)
  48. {
  49. }
  50. /**
  51. * 添加
  52. * @auth true
  53. * @menu true
  54. * @throws \think\Exception
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\ModelNotFoundException
  57. * @throws \think\exception\DbException
  58. * @throws \think\exception\PDOException
  59. */
  60. public function add()
  61. {
  62. $this->title = '添加';
  63. $this->_form($this->table, 'form');
  64. }
  65. /**
  66. * 编辑
  67. * @auth true
  68. * @menu true
  69. * @throws \think\Exception
  70. * @throws \think\db\exception\DataNotFoundException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @throws \think\exception\DbException
  73. * @throws \think\exception\PDOException
  74. */
  75. public function edit()
  76. {
  77. $this->title = '编辑';
  78. $this->_form($this->table, 'form');
  79. }
  80. /**
  81. * 启用
  82. * @auth true
  83. * @menu true
  84. * @throws \think\Exception
  85. * @throws \think\exception\PDOException
  86. */
  87. public function enable()
  88. {
  89. $this->_save($this->table, ['status' => 1]);
  90. }
  91. /**
  92. * 删除
  93. * @auth true
  94. * @menu true
  95. * @throws \think\Exception
  96. * @throws \think\exception\PDOException
  97. */
  98. public function del()
  99. {
  100. $this->_save($this->table, ['is_deleted' => 1]);
  101. }
  102. /**
  103. * 表单数据处理
  104. * @auth true
  105. * @menu true
  106. * @param array $data
  107. */
  108. protected function _form_filter(&$data)
  109. {
  110. if($this->request->isGet()) {
  111. $this->user_list = User::where('is_deleted',0)->column('name','id');
  112. }
  113. }
  114. }