ArticleComment.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\Db;
  5. /**
  6. * 评论审核
  7. * Class Auth
  8. * @package app\store\controller
  9. */
  10. class ArticleComment extends Controller
  11. {
  12. /**
  13. * 绑定数据表
  14. * @var string
  15. */
  16. protected $table = 'store_article_comment';
  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);
  31. $query->dateBetween('create_time')->order('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 &$v){
  45. if(!$v['username'] = Db::name('store_member')->where('id',$v['zid'])->value('username')){
  46. $v['username'] = Db::name('store_member')->where('id',$v['uid'])->value('username');
  47. }
  48. $v['article_title'] = Db::name('store_article')->where('id',$v['articleid'])->value('title');
  49. }
  50. }
  51. /**
  52. * 表单数据处理
  53. * @auth true
  54. * @menu true
  55. * @param array $data
  56. */
  57. public function audit()
  58. {
  59. $this->_save($this->table, ['audit' => '1','check_time'=>date('Y-m-d H:i:s')]);
  60. }
  61. /**
  62. * 表单数据处理
  63. * @auth true
  64. * @menu true
  65. * @param array $data
  66. */
  67. public function refuse()
  68. {
  69. $this->_save($this->table, ['audit' => '2','check_time'=>date('Y-m-d H:i:s')]);
  70. }
  71. /**
  72. * 表单数据处理
  73. * @auth true
  74. * @menu true
  75. * @param array $data
  76. */
  77. protected function _form_filter(&$data)
  78. {
  79. if ($this->request->isPost()) {
  80. $data['check_time']=date('Y-m-d H:i:s');
  81. }
  82. }
  83. }