1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\store\controller;
- use library\Controller;
- use library\tools\Data;
- use think\Db;
- use function AlibabaCloud\Client\value;
- /**
- * 评论列表
- * Class GoodsCate
- * @package app\store\controller
- */
- class Comment extends Controller
- {
- /**
- * 绑定数据表
- * @var string
- */
- protected $table = 'StoreComment';
- /**
- * 评论管理
- * @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()
- {
- $goods_id = input('goods_id');
- $forum_type = input('forum_type',1);
- if(empty($goods_id)){
- $this->error('非法操作');
- }
- $this->title = '评论列表管理';
- $query = $this->_query($this->table);
- $where[]=['a.is_deleted','=',0];
- $where[]=['a.forum_id','=',$goods_id];
- $where[]=['a.forum_type','=',$forum_type];
- if($this->request->request('phone')){
- $where[]=['m.phone','like','%'.$this->request->request('phone').'%'];
- }
- if($this->request->request('name')){
- $where[]=['m.name','like','%'.$this->request->request('name').'%'];
- }
- if($this->request->request('content')){
- $where[]=['a.content','like','%'.$this->request->request('content').'%'];
- }
- $query
- ->alias('a')
- ->field('a.*,m.headimg,m.name,m.phone')
- ->join('store_member m','a.user_id = m.id')
- ->where($where)
- ->order('a.id desc')
- ->page();
- }
- /**需求列表处理
- * @param array $data
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- */
- protected function _index_page_filter(array &$data)
- {
- $type_arr = array('1'=>'评论','2'=>'回复评论');
- foreach ($data as &$vo) {
- $vo['member'] = Db::name('store_member')->field('headimg,name,phone')->where('id',$vo['user_id'])->find();
- $vo['type_name'] = $type_arr[$vo['type']];
- if($vo['type'] == 2){
- $vo['apply_content'] = Db::name('store_comment')->where('id',$vo['comment_id'])->where('forum_type',1)->value('content');
- }
- }
- }
- //删除评论
- public function remove()
- {
- $this->_save($this->table, ['is_deleted' => '1','forum_id' => '0','type'=>0]);
- }
- }
|