Goods.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 商品
  7. * Class Goods
  8. * @package app\store\controller
  9. */
  10. class Goods extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'StoreGoods';
  17. /**
  18. * 商品列表
  19. * @auth true
  20. * @menu true
  21. * @throws \think\Exception
  22. * @throws \think\db\exception\DataNotFoundException
  23. * @throws \think\db\exception\ModelNotFoundException
  24. * @throws \think\exception\DbException
  25. * @throws \think\exception\PDOException
  26. */
  27. public function index()
  28. {
  29. $this->title = '商品管理';
  30. $this->goods_type =[
  31. 1=>'售卖',
  32. 2=>'兑换',
  33. 3=>'邀请赠送',
  34. ];
  35. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  36. $query->dateBetween('create_at')->order('sort desc , 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. foreach ($data as $k=>&$v){
  50. }
  51. }
  52. /**
  53. * 添加商品
  54. * @auth true
  55. * @menu true
  56. * @throws \think\Exception
  57. * @throws \think\db\exception\DataNotFoundException
  58. * @throws \think\db\exception\ModelNotFoundException
  59. * @throws \think\exception\DbException
  60. * @throws \think\exception\PDOException
  61. */
  62. public function add()
  63. {
  64. $this->title = '添加商品';
  65. to_reload();
  66. $this->goods_type =[
  67. 1=>'售卖',
  68. 2=>'兑换',
  69. 3=>'邀请赠送',
  70. ];
  71. $this->_form($this->table, 'form');
  72. }
  73. /**
  74. * 编辑商品
  75. * @auth true
  76. * @menu true
  77. * @throws \think\Exception
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\ModelNotFoundException
  80. * @throws \think\exception\DbException
  81. * @throws \think\exception\PDOException
  82. */
  83. function edit()
  84. {
  85. $this->title = '编辑商品';
  86. to_reload();
  87. $this->goods_type =[
  88. 1=>'售卖',
  89. 2=>'兑换',
  90. 3=>'邀请赠送',
  91. ];
  92. $this->_form($this->table, 'form');
  93. }
  94. /**
  95. * 表单数据处理
  96. * @auth true
  97. * @menu true
  98. * @param array $data
  99. */
  100. protected function _form_filter(&$data)
  101. {
  102. if($this->request->post()){
  103. if(!isset($data['id'])) $data['base_stock'] = $data['stock'];
  104. $data['sell_day'] = date('Y-m-d',strtotime($data['sell_time']));
  105. $data['sell_point'] = date('H:i',strtotime($data['sell_time']));
  106. $data['goods_auth'] = $data['issuer'];
  107. }
  108. }
  109. /**
  110. * @auth true
  111. * @menu true
  112. * 商品上架
  113. */
  114. public function up()
  115. {
  116. $this->_save($this->table, ['status' => '1']);
  117. }
  118. /**
  119. * @auth true
  120. * @menu true
  121. * 商品下架
  122. */
  123. public function down()
  124. {
  125. $this->_save($this->table, ['status' => '0']);
  126. }
  127. /**
  128. * @auth true
  129. * @menu true
  130. * 商品下架
  131. */
  132. public function del()
  133. {
  134. $this->_save($this->table, ['is_deleted' => '1']);
  135. }
  136. }