SeriesDatum.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. namespace app\Nutrition\controller;
  3. use app\common\model\datum_idIntro;
  4. use app\common\model\datum_idUrl;
  5. use app\common\model\DatumIntro;
  6. use app\common\model\DatumUrl;
  7. use app\common\model\SupplierGoods;
  8. use library\Controller;
  9. use library\tools\Data;
  10. use think\Db;
  11. use app\common\model\DatumCate;
  12. /**
  13. * 资料管理
  14. * Class OneDatum
  15. * @package app\Nutrition\controller
  16. */
  17. class SeriesDatum extends Controller
  18. {
  19. /**
  20. * 绑定数据表
  21. * @var string
  22. */
  23. protected $table = 'DatumIntro';
  24. /**
  25. * 列表
  26. * @auth true
  27. * @menu true
  28. * @throws \think\Exception
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\ModelNotFoundException
  31. * @throws \think\exception\DbException
  32. * @throws \think\exception\PDOException
  33. */
  34. public function index()
  35. {
  36. $this->title = '资料列表';
  37. $datum_cate = DatumCate::field('id,title')->select()->toArray();
  38. $this->datum_cate = array_column($datum_cate,null,'id');
  39. $sel_where = [];
  40. $sel_where[] = ['is_deleted','=',0];
  41. $sel_where[] = ['type','=',2];
  42. if($id = $this->request->get('id')) $sel_where[] = ['id','=',$id];
  43. if($title = $this->request->get('title')) $sel_where[] = ['title','like','%'.$title.'%'];
  44. $query = $this->_query($this->table);
  45. $query->where($sel_where)->order('sort desc,id desc')->page();
  46. }
  47. /**
  48. * 数据列表处理
  49. * @auth true
  50. * @menu true
  51. * @param array $data
  52. * @throws \think\db\exception\DataNotFoundException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @throws \think\exception\DbException
  55. */
  56. protected function _index_page_filter(&$data)
  57. {
  58. }
  59. /**
  60. * 添加
  61. * @auth true
  62. * @menu 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->type = input('get.type',2);
  73. $this->_form($this->table, 'form');
  74. }
  75. /**
  76. * 编辑
  77. * @auth true
  78. * @menu true
  79. * @throws \think\Exception
  80. * @throws \think\db\exception\DataNotFoundException
  81. * @throws \think\db\exception\ModelNotFoundException
  82. * @throws \think\exception\DbException
  83. * @throws \think\exception\PDOException
  84. */
  85. public function edit()
  86. {
  87. $this->title = '编辑资料';
  88. $this->type = input('get.type',2);
  89. $this->_form($this->table, 'form') ;
  90. }
  91. /**
  92. * 禁用
  93. * @auth true
  94. * @menu true
  95. * @throws \think\Exception
  96. * @throws \think\db\exception\DataNotFoundException
  97. * @throws \think\db\exception\ModelNotFoundException
  98. * @throws \think\exception\DbException
  99. * @throws \think\exception\PDOException
  100. */
  101. public function forbidden()
  102. {
  103. $this->_save($this->table, ['status' => '0']);
  104. }
  105. /**
  106. * 启用
  107. * @auth true
  108. * @menu true
  109. * @throws \think\Exception
  110. * @throws \think\db\exception\DataNotFoundException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. * @throws \think\exception\DbException
  113. * @throws \think\exception\PDOException
  114. */
  115. public function enable()
  116. {
  117. $this->_save($this->table, ['status' => 1]);
  118. }
  119. /**
  120. * 删除资料
  121. * @auth true
  122. * @menu true
  123. * @throws \think\Exception
  124. * @throws \think\db\exception\DataNotFoundException
  125. * @throws \think\db\exception\ModelNotFoundException
  126. * @throws \think\exception\DbException
  127. * @throws \think\exception\PDOException
  128. */
  129. public function del()
  130. {
  131. $this->_save($this->table, ['is_deleted' => 1]);
  132. }
  133. /**
  134. * 批量删除资料
  135. * @auth true
  136. * @menu true
  137. * @throws \think\Exception
  138. * @throws \think\db\exception\DataNotFoundException
  139. * @throws \think\db\exception\ModelNotFoundException
  140. * @throws \think\exception\DbException
  141. * @throws \think\exception\PDOException
  142. */
  143. public function remove()
  144. {
  145. $this->_save($this->table, ['is_deleted' => 1]);
  146. }
  147. /**
  148. * 表单数据处理
  149. * @auth true
  150. * @menu true
  151. * @param array $data
  152. */
  153. protected function _form_filter(&$data)
  154. {
  155. if($this->request->isGet()){
  156. $this->datum_cate = DatumCate::column('id,title,is_vip','id');
  157. $this->r = input('get.r',0);
  158. // 视频
  159. $this->video_list = \app\common\model\VideoIntro::with('videoArr')
  160. ->where(['is_deleted'=>0])->order('id desc')
  161. ->select()->toArray();
  162. $this->supplier_goods = SupplierGoods::getSupplierGoodsList($this->request->action() == 'add' ? ['s.is_deleted'=>0]: []);
  163. }
  164. if($this->request->isPost()) {
  165. if($this->request->action() == 'add') $data['url_num'] = 0;
  166. }
  167. }
  168. }