Rule.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 = 'lida_rule';
  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. } else {
  105. }
  106. }
  107. /**
  108. * 表单结果处理
  109. * @param boolean $result
  110. */
  111. protected function _form_result($result)
  112. {
  113. if ($result && $this->request->isPost()) {
  114. $this->success('积分编辑成功!');
  115. }
  116. }
  117. /**
  118. * 商品库存入库
  119. * @auth true
  120. * @throws \think\Exception
  121. * @throws \think\db\exception\DataNotFoundException
  122. * @throws \think\db\exception\ModelNotFoundException
  123. * @throws \think\exception\DbException
  124. * @throws \think\exception\PDOException
  125. */
  126. public function stock()
  127. {
  128. if ($this->request->isGet()) {
  129. $biaoqian=['爆款','准新车','急租'];
  130. $car=Db::table($this->table)->where('id',$this->request->get('id'))->value('biaoqian');
  131. $car_biaoqian=explode(',', isset($car) ? $car : '');
  132. $this->fetch('', ['biaoqian' => $biaoqian,'car_biaoqian'=>$car_biaoqian]);
  133. } else {
  134. $data['biaoqian']=implode(',',$this->request->post('biaoqian'));
  135. Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
  136. $this->success('操作成功');
  137. }
  138. }
  139. /**
  140. * 商品推荐
  141. * @auth true
  142. * @throws \think\Exception
  143. * @throws \think\db\exception\DataNotFoundException
  144. * @throws \think\db\exception\ModelNotFoundException
  145. * @throws \think\exception\DbException
  146. * @throws \think\exception\PDOException
  147. */
  148. public function tuijian()
  149. {
  150. if ($this->request->isGet()) {
  151. $car=Db::table($this->table)->where('id',$this->request->get('id'))->find();
  152. $this->fetch('', ['vo' => $car]);
  153. } else {
  154. $data['tuijian_remark']=$this->request->post('tuijian_remark');
  155. $data['is_tuijian']=1;
  156. Db::table($this->table)->where('id',$this->request->get('id'))->update($data);
  157. $this->success('操作成功');
  158. }
  159. }
  160. /**
  161. * 禁用积分
  162. * @auth true
  163. * @throws \think\Exception
  164. * @throws \think\exception\PDOException
  165. */
  166. public function forbid()
  167. {
  168. $this->_save($this->table, ['status' => '0']);
  169. }
  170. /**
  171. * 启用积分
  172. * @auth true
  173. * @throws \think\Exception
  174. * @throws \think\exception\PDOException
  175. */
  176. public function resume()
  177. {
  178. $this->_save($this->table, ['status' => '1']);
  179. }
  180. /**
  181. * 删除积分
  182. * @auth true
  183. * @throws \think\Exception
  184. * @throws \think\exception\PDOException
  185. */
  186. public function remove()
  187. {
  188. $this->_delete($this->table);
  189. }
  190. }