model = new \app\admin\model\xilufitness\user\Comment; $this->view->assign("statusList", $this->model->getStatusList()); } /** * 查看 * * @return string|Json * @throws \think\Exception * @throws DbException */ public function index() { //设置过滤方法 $this->request->filter(['strip_tags', 'trim']); if (false === $this->request->isAjax()) { $this->assignconfig('user_id',$this->request->param('user_id/d',0)); return $this->view->fetch(); } //如果发送的来源是 Selectpage,则转发到 Selectpage if ($this->request->request('keyField')) { return $this->selectpage(); } [$where, $sort, $order, $offset, $limit] = $this->buildparams(); $fitness_brand_id = $this->getFitnessBrandId(); $fitness_shop_id = $this->getFitnessShopId(); $list = $this->model ->with(['user' => function($query){ $query->withField(['nickname']); }, 'brand' => function($query){ $query->withField(['brand_name']); }, 'shop' => function($query){ $query->withField(['shop_name']); }, 'coach' => function($query){ $query->withField(['coach_name']); }]) ->where($where) ->where(function ($query) use($fitness_brand_id,$fitness_shop_id){ if($fitness_brand_id > 0){ $query->where('comment.brand_id','eq',$fitness_brand_id); } if($fitness_shop_id > 0){ $query->where('comment.shop_id','eq',$fitness_shop_id); } }) ->order($sort, $order) ->paginate($limit); $result = ['total' => $list->total(), 'rows' => $list->items()]; return json($result); } //添加 public function add(){ return; } //回收站列表 public function recyclebin() { return; } //回收站(真实删除或清空) public function destroy($ids = null) { return; } //回收站还原 public function restore($ids = null) { return; } }