Comment.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. use function AlibabaCloud\Client\value;
  19. /**
  20. * 评论列表
  21. * Class GoodsCate
  22. * @package app\store\controller
  23. */
  24. class Comment extends Controller
  25. {
  26. /**
  27. * 绑定数据表
  28. * @var string
  29. */
  30. protected $table = 'StoreComment';
  31. /**
  32. * 评论管理
  33. * @auth true
  34. * @menu true
  35. * @throws \think\Exception
  36. * @throws \think\db\exception\DataNotFoundException
  37. * @throws \think\db\exception\ModelNotFoundException
  38. * @throws \think\exception\DbException
  39. * @throws \think\exception\PDOException
  40. */
  41. public function index()
  42. {
  43. $goods_id = input('goods_id');
  44. $forum_type = input('forum_type',1);
  45. if(empty($goods_id)){
  46. $this->error('非法操作');
  47. }
  48. $this->title = '评论列表管理';
  49. $query = $this->_query($this->table);
  50. $where[]=['a.is_deleted','=',0];
  51. $where[]=['a.forum_id','=',$goods_id];
  52. $where[]=['a.forum_type','=',$forum_type];
  53. if($this->request->request('phone')){
  54. $where[]=['m.phone','like','%'.$this->request->request('phone').'%'];
  55. }
  56. if($this->request->request('name')){
  57. $where[]=['m.name','like','%'.$this->request->request('name').'%'];
  58. }
  59. if($this->request->request('content')){
  60. $where[]=['a.content','like','%'.$this->request->request('content').'%'];
  61. }
  62. $query
  63. ->alias('a')
  64. ->field('a.*,m.headimg,m.name,m.phone')
  65. ->join('store_member m','a.user_id = m.id')
  66. ->where($where)
  67. ->order('a.id desc')
  68. ->page();
  69. }
  70. /**需求列表处理
  71. * @param array $data
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\ModelNotFoundException
  74. * @throws \think\exception\DbException
  75. */
  76. protected function _index_page_filter(array &$data)
  77. {
  78. $type_arr = array('1'=>'评论','2'=>'回复评论');
  79. foreach ($data as &$vo) {
  80. $vo['member'] = Db::name('store_member')->field('headimg,name,phone')->where('id',$vo['user_id'])->find();
  81. $vo['type_name'] = $type_arr[$vo['type']];
  82. if($vo['type'] == 2){
  83. $vo['apply_content'] = Db::name('store_comment')->where('id',$vo['comment_id'])->where('forum_type',1)->value('content');
  84. }
  85. }
  86. }
  87. //删除评论
  88. public function remove()
  89. {
  90. $this->_save($this->table, ['is_deleted' => '1','forum_id' => '0','type'=>0]);
  91. }
  92. }