123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- namespace app\store\controller;
- use library\Controller;
- use think\Db;
- /**
- * 评论审核
- * Class Auth
- * @package app\store\controller
- */
- class ArticleComment extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'store_article_comment';
- /**
- * 评论审核
- * @auth true
- * @menu true
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- $this->title = '评论审核';
- $query = $this->_query($this->table);
- $query->dateBetween('create_time')->order('id desc')->page();
- }
- /**
- * 数据列表处理
- * @auth true
- * @menu true
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(&$data)
- {
- foreach ($data as &$v){
- if(!$v['username'] = Db::name('store_member')->where('id',$v['zid'])->value('username')){
- $v['username'] = Db::name('store_member')->where('id',$v['uid'])->value('username');
- }
- $v['article_title'] = Db::name('store_article')->where('id',$v['articleid'])->value('title');
- }
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- public function audit()
- {
- $this->_save($this->table, ['audit' => '1','check_time'=>date('Y-m-d H:i:s')]);
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- public function refuse()
- {
- $this->_save($this->table, ['audit' => '2','check_time'=>date('Y-m-d H:i:s')]);
- }
- /**
- * 表单数据处理
- * @auth true
- * @menu true
- * @param array $data
- */
- protected function _form_filter(&$data)
- {
- if ($this->request->isPost()) {
- $data['check_time']=date('Y-m-d H:i:s');
- }
- }
- }
|