Xw.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <?php
  2. namespace app\admin\controller;
  3. use app\data\model\DataXw;
  4. use app\data\model\DataXwAd;
  5. use app\data\model\DataXwCategory;
  6. use think\admin\Controller;
  7. /**
  8. * 新闻报道
  9. * Class Xw
  10. * @package app\admin\controller\Xw
  11. */
  12. class Xw extends Controller
  13. {
  14. /**
  15. * 新闻列表
  16. * @auth true
  17. * @menu true
  18. */
  19. public function index(){
  20. $this->title='新闻列表';
  21. $this->class = DataXwCategory::where('status',1)->select();
  22. $category_id = input('category_id');
  23. $where = [];
  24. if($category_id != ''){
  25. $where['category_id'] = $category_id;
  26. }
  27. DataXw::mQuery()
  28. ->with('category')
  29. ->where($where)
  30. ->withCount(['comments','likes'])
  31. ->like('title')->dateBetween('create_time')->layTable();
  32. }
  33. /**
  34. * 新闻添加
  35. * @auth true
  36. * @menu true
  37. */
  38. public function add(){
  39. $this->xw_vali();
  40. $this->assign('category',DataXwCategory::show()->select());
  41. DataXw::mForm('form');
  42. }
  43. /**
  44. * 新闻编辑
  45. * @auth true
  46. * @menu true
  47. */
  48. public function edit(){
  49. $this->xw_vali();
  50. $this->assign('category',DataXwCategory::show()->select());
  51. DataXw::mForm('form');
  52. }
  53. protected function xw_vali(){
  54. if($this->request->isPost()){
  55. $this->_vali([
  56. 'title.max:50'=>'标题过长',
  57. ]);
  58. }
  59. }
  60. /**
  61. * 新闻删除
  62. * @auth true
  63. * @menu true
  64. */
  65. public function remove(){
  66. $ids=$this->request->post('id');
  67. DataXw::whereIn('id',$ids)->select()->each(function ($d){$d->delete();});
  68. $this->success('删除成功');
  69. }
  70. /**
  71. * 新闻分类
  72. * @auth true
  73. * @menu true
  74. */
  75. public function category(){
  76. $this->title='分类';
  77. DataXwCategory::mQuery()
  78. ->like('name')
  79. ->layTable();
  80. }
  81. /**
  82. * 新闻分类添加
  83. * @auth true
  84. * @menu true
  85. */
  86. public function category_add(){
  87. if($this->request->isPost()) {
  88. $this->cate_vali();
  89. }
  90. DataXwCategory::mForm('form_category');
  91. }
  92. protected function cate_vali(){
  93. $this->_vali([
  94. 'name.require'=>'分类名必须',
  95. 'name.max:50'=>'分类名过长',
  96. 'sort.require'=>'排序必须',
  97. 'sort.egt:0'=>'排序必须大于0',
  98. 'sort.integer'=>'排序必须是数字',
  99. ]);
  100. }
  101. /**
  102. * 新闻分类编辑
  103. * @auth true
  104. * @menu true
  105. */
  106. public function category_edit(){
  107. if($this->request->isPost()) {
  108. $this->cate_vali();
  109. }
  110. DataXwCategory::mForm('form_category');
  111. }
  112. /**
  113. * 新闻分类删除
  114. * @auth true
  115. * @menu true
  116. */
  117. public function category_del(){
  118. $id=$this->request->post('id');
  119. $all=DataXwCategory::whereIn('id',$id)->select();
  120. $all->each(function ($c){
  121. $c->delete();
  122. });
  123. $this->success('删除成功');
  124. }
  125. /**
  126. * 新闻分类上下架
  127. * @auth true
  128. * @menu true
  129. */
  130. public function cate_state(){
  131. DataXwCategory::mSave([
  132. 'status'=>$this->request->post('status'),
  133. ]);
  134. }
  135. /**
  136. * 新闻上下架
  137. * @auth true
  138. * @menu true
  139. */
  140. public function state(){
  141. DataXw::mSave([
  142. 'status'=>$this->request->post('status'),
  143. ]);
  144. }
  145. /**
  146. * 新闻广告列表
  147. * @auth true
  148. * @menu true
  149. */
  150. public function ad_index(){
  151. $this->title='广告列表';
  152. DataXwAd::mQuery()->layTable();
  153. }
  154. /**
  155. * 新闻广告添加
  156. * @auth true
  157. * @menu true
  158. */
  159. public function ad_add(){
  160. $this->ad_vali();
  161. $this->assign('category',DataXwCategory::show()->select());
  162. DataXwAd::mForm('ad_form');
  163. }
  164. /**
  165. * 新闻广告编辑
  166. * @auth true
  167. * @menu true
  168. */
  169. public function ad_edit(){
  170. $this->ad_vali();
  171. $this->assign('category',DataXwCategory::show()->select());
  172. DataXwAd::mForm('ad_form');
  173. }
  174. protected function ad_vali(){
  175. if($this->request->isPost()){
  176. $this->_vali([
  177. 'title.max:50'=>'标题过长',
  178. ]);
  179. }
  180. }
  181. /**
  182. * 新闻广告删除
  183. * @auth true
  184. * @menu true
  185. */
  186. public function ad_del(){
  187. $ids=$this->request->post('id');
  188. DataXwAd::whereIn('id',$ids)->select()->each(function ($d){$d->delete();});
  189. $this->success('删除成功');
  190. }
  191. /**
  192. * 新闻广告上下架
  193. * @auth true
  194. * @menu true
  195. */
  196. public function ad_state(){
  197. DataXwAd::mSave([
  198. 'status'=>$this->request->post('status'),
  199. ]);
  200. }
  201. /**
  202. * 表单结果处理
  203. * @param boolean $state
  204. */
  205. protected function _form_result(bool $state)
  206. {
  207. if ($state) {
  208. $this->success('保存成功1!',in_array($this->request->action(),['add','edit','ad_add','ad_edit'])? 'javascript:history.back()':'');
  209. }
  210. }
  211. /**
  212. * 新闻报道设置
  213. * @auth true
  214. * @menu true
  215. */
  216. public function config(){
  217. if($this->request->isGet()){
  218. $this->title='新闻报道设置';
  219. $this->assign('vo',sysconf('config_xw.'));
  220. $this->fetch();
  221. }else{
  222. $data=$this->_vali([
  223. 'split_num.require'=>'间隔数必须',
  224. 'user_avatar.require'=>'头像数必须',
  225. 'user_avatar.url'=>'头像链接有误',
  226. 'username.require'=>'名称必须',
  227. 'split_num.gt:0'=>'间隔数必须大于0',
  228. ]);
  229. sysconf('config_xw',$data);
  230. $this->success('保存成功');
  231. }
  232. }
  233. }