where('is_del', 0); if ($where['pid']) $model = $model->where('pid', $where['pid']); if ($where['title'] != '') $model = $model->where('name|nickname|uid', 'like', "%$where[title]%"); return $model; } /**老师列表 * @param $where */ public static function getTeacherLists($where) { $data = self::setWhere($where)->page($where['page'], $where['limit'])->select(); foreach ($data as $key => &$value) { $value['cate'] = TeacherCategpry::where('id', $value['pid'])->value('title'); } $count = self::setWhere($where)->count(); return compact('data', 'count'); } }