params['subclass']) && !empty($this->params['subclass'])) $this->params['subclass'] = end($this->params['subclass']); return [ '=' => ['subclass','course_picture', 'course_url', 'course_lock', 'course_length', 'course_question_setting', 'course_question_score'], '%like%' => ['course_name'], ]; } /** * @notes 获取列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2025/02/14 17:37 */ public function lists(): array { $lists = TrainingCourse::with(['goodsCategory'])->where($this->searchWhere) ->field(['*']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); foreach ($lists as &$item) { if($item['goodsCategory']){ $item['category_id_text'] = $item['goodsCategory']['name']; $item['category_two_text'] = GoodsCategory::where('id',$item['goodsCategory']['pid']??0)->value('name')??''; $item['category_three_text'] = GoodsCategory::where('id',GoodsCategory::where('id',$item['goodsCategory']['pid'])->value('pid')??0)->value('name')??''; } } return $lists; } /** * @notes 获取数量 * @return int * @author likeadmin * @date 2025/02/14 17:37 */ public function count(): int { return TrainingCourse::where($this->searchWhere)->count(); } }