From 46eb8fdbdd9f2d11c21c1fbb229627ba935f4cbb Mon Sep 17 00:00:00 2001 From: monanxiao Date: Tue, 21 Mar 2023 17:30:55 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=90=8E=E5=8F=B0=E8=AF=84?= =?UTF-8?q?=E8=AE=BA=E6=8C=89=E9=92=AE=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/nk/Comment.php | 8 ++++++-- app/admin/view/nk/comment/index.html | 10 +++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/app/admin/controller/nk/Comment.php b/app/admin/controller/nk/Comment.php index 7e21865..98672de 100644 --- a/app/admin/controller/nk/Comment.php +++ b/app/admin/controller/nk/Comment.php @@ -45,7 +45,7 @@ class Comment extends BaseController if (isset($params['keywords'])){ // $where[]=['title','like','%'.$params['keywords'].'%']; } - if($this->adminInfo['position_id'] != 1){ //不是超级管理员 + if($this->adminInfo['position_id'] != 1){ //不是超级管理员 $www['admin_id'] = $this->adminInfo['id']; $user_address = Db::table('fa_szxc_information_useraddress')->where($www)->find(); if ($user_address){ @@ -66,6 +66,7 @@ class Comment extends BaseController $total = Db::table('fa_article_comment') ->where($where) ->count(); + $list = Db::table('fa_article_comment') ->withAttr('name',function ($value,$data){ return Db::table('fa_szxc_information_usermsg')->where('user_id',$data['user_id'])->value('name'); @@ -79,8 +80,10 @@ class Comment extends BaseController ->withAttr('status',function ($value,$data){ if($value == 1){ return '通过'; - }else{ + }elseif($value == 2){ return '不通过'; + }else{ + return '待审核'; } }) ->where($where) @@ -92,6 +95,7 @@ class Comment extends BaseController return table_assign(0, '', $result); } else{ + return view('nk/comment/index',['url'=>$this->url]); } } diff --git a/app/admin/view/nk/comment/index.html b/app/admin/view/nk/comment/index.html index 6544394..9e26a47 100644 --- a/app/admin/view/nk/comment/index.html +++ b/app/admin/view/nk/comment/index.html @@ -26,7 +26,15 @@ {/block}