IntegralGoods.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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 IntegralGoods extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'ExchangeGoods';
  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. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  31. $query->dateBetween('create_at')->order('sort desc , id desc')->page();
  32. }
  33. /**
  34. * 数据列表处理
  35. * @auth true
  36. * @menu true
  37. * @param array $data
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. */
  42. protected function _index_page_filter(&$data)
  43. {
  44. foreach ($data as $k=>&$v){
  45. }
  46. }
  47. /**
  48. * 添加商品
  49. * @auth true
  50. * @menu true
  51. * @throws \think\Exception
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\exception\DbException
  55. * @throws \think\exception\PDOException
  56. */
  57. public function add()
  58. {
  59. $this->title = '添加商品';
  60. // 分类
  61. $goods_cate = Db::table('store_goods_cate')
  62. ->field('id,title')
  63. ->where(['is_deleted'=>0,'status'=>1,'pid'=>0])
  64. ->order('sort desc ,id desc')
  65. ->select();
  66. $this->goods_cate = $goods_cate;
  67. $this->_form($this->table, 'form');
  68. }
  69. /**
  70. * 编辑商品
  71. * @auth true
  72. * @menu true
  73. * @throws \think\Exception
  74. * @throws \think\db\exception\DataNotFoundException
  75. * @throws \think\db\exception\ModelNotFoundException
  76. * @throws \think\exception\DbException
  77. * @throws \think\exception\PDOException
  78. */
  79. function edit()
  80. {
  81. $this->title = '编辑商品';
  82. // 分类
  83. $goods_cate = Db::table('store_goods_cate')
  84. ->field('id,title')
  85. ->where(['is_deleted'=>0,'status'=>1,'pid'=>0])
  86. ->order('sort desc ,id desc')
  87. ->select();
  88. $this->goods_cate = $goods_cate;
  89. $this->all_temp = Db::table('freight_template')
  90. ->field('id,name')->where(['status'=>1,'is_deleted'=>0])
  91. ->order('sort desc ,id desc')->select();
  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. }
  103. /**
  104. * @auth true
  105. * @menu true
  106. * 商品上架
  107. */
  108. public function up()
  109. {
  110. $this->_save($this->table, ['status' => '1']);
  111. }
  112. /**
  113. * @auth true
  114. * @menu true
  115. * 商品下架
  116. */
  117. public function down()
  118. {
  119. $this->_save($this->table, ['status' => '0']);
  120. }
  121. /**
  122. * @auth true
  123. * @menu true
  124. * 商品下架
  125. */
  126. public function del()
  127. {
  128. $this->_save($this->table, ['is_deleted' => '1']);
  129. }
  130. }