Rule.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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. use library\tools\Data;
  17. use think\Db;
  18. /**
  19. * 汽车管理
  20. * Class Goods
  21. * @package app\store\controller
  22. */
  23. class Rule extends Controller
  24. {
  25. /**
  26. * 指定数据表
  27. * @var string
  28. */
  29. protected $table = 'p_car';
  30. /**
  31. * 汽车管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '汽车管理';
  43. $query = $this->_query($this->table)->equal('status,cate_id')->like('title');
  44. $query->where(['is_deleted' => '0'])->order('id desc')->page();
  45. }
  46. /**
  47. * 数据列表处理
  48. * @param array $data
  49. * @throws \think\db\exception\DataNotFoundException
  50. * @throws \think\db\exception\ModelNotFoundException
  51. * @throws \think\exception\DbException
  52. */
  53. protected function _index_page_filter(&$data)
  54. {
  55. foreach ($data as $k=>&$v){
  56. $v['chexing']=Db::name('p_car_chexing')->whereIn('id',$v['chexing'])->value('name');
  57. $v['pinpai']=Db::name('p_car_pinpai')->whereIn('id',$v['pinpai'])->value('name');
  58. }
  59. }
  60. /**
  61. * 添加汽车
  62. * @auth true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function add()
  70. {
  71. $this->title = '添加汽车';
  72. $this->isAddMode = '1';
  73. $this->_form($this->table, 'form');
  74. }
  75. /**
  76. * 编辑汽车
  77. * @auth true
  78. * @throws \think\Exception
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. * @throws \think\exception\DbException
  82. * @throws \think\exception\PDOException
  83. */
  84. public function edit()
  85. {
  86. $this->title = '编辑汽车';
  87. $this->isAddMode = '0';
  88. $this->_form($this->table, 'form');
  89. }
  90. /**
  91. * 表单数据处理
  92. * @param array $data
  93. * @throws \think\Exception
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. * @throws \think\exception\DbException
  97. * @throws \think\exception\PDOException
  98. */
  99. protected function _form_filter(&$data)
  100. {
  101. if ($this->request->isGet()) {
  102. }
  103. if ($this->request->isPost()) {
  104. if(!$this->request->post('id')){
  105. $data['create_at']=date('Y-m-d');
  106. }
  107. // 用户权限处理
  108. $data['chexing_id'] = (isset($data['chexing_id']) && is_array($data['chexing_id'])) ? join(',', $data['chexing_id']) : '';
  109. $chexing=Db::name('p_car_chexing')->where(['is_deleted' => '0'])->order('id desc')->where('id',$data['chexing'])->value('name');
  110. $pinpai=Db::name('p_car_pinpai')->where(['is_deleted' => '0'])->order('id desc')->where('id',$data['pinpai'])->value('name');
  111. $data['search']=$chexing.' '. $pinpai;
  112. } else {
  113. $data['chexing_id'] = explode(',', isset($data['chexing_id']) ? $data['chexing_id'] : '');
  114. $this->chexing_ids = Db::name('p_car_chexing')->where(['is_deleted' => '0'])->order('id desc')->select();
  115. $this->pinpai = Db::name('p_car_pinpai')->where(['is_deleted' => '0'])->order('id desc')->select();
  116. }
  117. }
  118. /**
  119. * 表单结果处理
  120. * @param boolean $result
  121. */
  122. protected function _form_result($result)
  123. {
  124. if ($result && $this->request->isPost()) {
  125. $this->success('汽车编辑成功!', 'javascript:history.back()');
  126. }
  127. }
  128. /**
  129. * 商品库存入库
  130. * @auth true
  131. * @throws \think\Exception
  132. * @throws \think\db\exception\DataNotFoundException
  133. * @throws \think\db\exception\ModelNotFoundException
  134. * @throws \think\exception\DbException
  135. * @throws \think\exception\PDOException
  136. */
  137. public function stock()
  138. {
  139. if ($this->request->isGet()) {
  140. $biaoqian=['爆款','准新车','急租'];
  141. $car=Db::table($this->table)->where('id',$this->request->get('id'))->value('biaoqian');
  142. $car_biaoqian=explode(',', isset($car) ? $car : '');
  143. $this->fetch('', ['biaoqian' => $biaoqian,'car_biaoqian'=>$car_biaoqian]);
  144. } else {
  145. $data['biaoqian']=implode(',',$this->request->post('biaoqian'));
  146. Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
  147. $this->success('操作成功');
  148. }
  149. }
  150. /**
  151. * 商品推荐
  152. * @auth true
  153. * @throws \think\Exception
  154. * @throws \think\db\exception\DataNotFoundException
  155. * @throws \think\db\exception\ModelNotFoundException
  156. * @throws \think\exception\DbException
  157. * @throws \think\exception\PDOException
  158. */
  159. public function tuijian()
  160. {
  161. if ($this->request->isGet()) {
  162. $car=Db::table($this->table)->where('id',$this->request->get('id'))->find();
  163. $this->fetch('', ['vo' => $car]);
  164. } else {
  165. $data['tuijian_remark']=$this->request->post('tuijian_remark');
  166. $data['is_tuijian']=1;
  167. Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
  168. $this->success('操作成功');
  169. }
  170. }
  171. /**
  172. * 禁用汽车
  173. * @auth true
  174. * @throws \think\Exception
  175. * @throws \think\exception\PDOException
  176. */
  177. public function forbid()
  178. {
  179. $this->_save($this->table, ['status' => '0']);
  180. }
  181. /**
  182. * 启用汽车
  183. * @auth true
  184. * @throws \think\Exception
  185. * @throws \think\exception\PDOException
  186. */
  187. public function resume()
  188. {
  189. $this->_save($this->table, ['status' => '1']);
  190. }
  191. /**
  192. * 删除汽车
  193. * @auth true
  194. * @throws \think\Exception
  195. * @throws \think\exception\PDOException
  196. */
  197. public function remove()
  198. {
  199. $this->_delete($this->table);
  200. }
  201. }