BestKnowledgeAd.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. namespace app\admin\controller;
  3. use app\data\model\DataXwCategory;
  4. use app\data\model\DataBestKnowledgeAd;
  5. use think\admin\Controller;
  6. /**
  7. * 新闻报道
  8. * Class BestKnowledgeAd
  9. * @package app\admin\controller\BestKnowledgeAd
  10. */
  11. class BestKnowledgeAd extends Controller
  12. {
  13. /**
  14. * 新闻广告列表
  15. * @auth true
  16. * @menu true
  17. */
  18. public function ad_index(){
  19. $this->title='广告列表';
  20. DataBestKnowledgeAd::mQuery()->layTable();
  21. }
  22. /**
  23. * 新闻广告添加
  24. * @auth true
  25. * @menu true
  26. */
  27. public function ad_add(){
  28. $this->ad_vali();
  29. $this->assign('category',DataXwCategory::show()->select());
  30. DataBestKnowledgeAd::mForm('ad_form');
  31. }
  32. /**
  33. * 新闻广告编辑
  34. * @auth true
  35. * @menu true
  36. */
  37. public function ad_edit(){
  38. $this->ad_vali();
  39. $this->assign('category',DataXwCategory::show()->select());
  40. DataBestKnowledgeAd::mForm('ad_form');
  41. }
  42. protected function ad_vali(){
  43. if($this->request->isPost()){
  44. $this->_vali([
  45. 'title.max:50'=>'标题过长',
  46. ]);
  47. }
  48. }
  49. /**
  50. * 新闻广告删除
  51. * @auth true
  52. * @menu true
  53. */
  54. public function ad_del(){
  55. $ids=$this->request->post('id');
  56. DataBestKnowledgeAd::whereIn('id',$ids)->select()->each(function ($d){$d->delete();});
  57. $this->success('删除成功');
  58. }
  59. /**
  60. * 新闻广告上下架
  61. * @auth true
  62. * @menu true
  63. */
  64. public function ad_state(){
  65. DataBestKnowledgeAd::mSave([
  66. 'status'=>$this->request->post('status'),
  67. ]);
  68. }
  69. /**
  70. * 表单结果处理
  71. * @param boolean $state
  72. */
  73. protected function _form_result(bool $state)
  74. {
  75. if ($state) {
  76. $this->success('保存成功!',in_array($this->request->action(),['add','edit','ad_add','ad_edit'])? 'javascript:history.back()':'');
  77. }
  78. }
  79. /**
  80. * 新闻报道设置
  81. * @auth true
  82. * @menu true
  83. */
  84. public function config(){
  85. if($this->request->isGet()){
  86. $this->title='间隔设置';
  87. $this->assign('vo',sysconf('config_xw.'));
  88. $this->fetch();
  89. }else{
  90. $data=$this->_vali([
  91. 'split_num2.require'=>'间隔数必须',
  92. 'user_avatar2.require'=>'头像数必须',
  93. 'user_avatar2.url'=>'头像链接有误',
  94. 'username2.require'=>'名称必须',
  95. 'split_num2.gt:0'=>'间隔数必须大于0',
  96. ]);
  97. sysconf('config_xw',$data);
  98. $this->success('保存成功');
  99. }
  100. }
  101. }