where('lecturer_name', 'LIKE', "%$search%"); } $data = $model->where(['is_del' => 0, 'is_show' => 1])->where('mer_id','>',0)->page((int)$page, (int)$limit) ->field('id,mer_id,lecturer_name,lecturer_head,label,curriculum,explain,study,sort,is_show,is_del') ->order('sort DESC,id DESC')->select(); $data = count($data) > 0 ? $data->toArray() : []; foreach ($data as $key => &$value) { $value['is_follow'] = $uid > 0 ? MerchantFollow::isFollow($uid, $value['mer_id']) : false; $value['label'] = json_decode($value['label']); } return $data; } /**讲师详情 * @param int $id */ public static function details($id = 0) { $details = self::where(['is_del' => 0, 'is_show' => 1])->where('id', $id)->find(); if ($details) { $details['label'] = json_decode($details['label']); $details['introduction'] = htmlspecialchars_decode($details['introduction']); $details['entry_type'] = $details['entry_type']; return $details; } else { return null; } } public static function information($mer_id) { if (!$mer_id) return null; $lecturer_id = Merchant::where('id', $mer_id)->value('lecturer_id'); $details = self::where(['is_del' => 0, 'is_show' => 1])->where('id', $lecturer_id) ->field('id,lecturer_name,lecturer_head,label')->find(); if ($details) { $details['label'] = json_decode($details['label']); return $details; } else { return null; } } }