You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
zhishifufei_php/application/web/model/special/Lecturer.php

78 lines
2.8 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\web\model\special;
use basic\ModelBasic;
use traits\ModelTrait;
use app\web\model\merchant\Merchant;
use app\web\model\merchant\MerchantFollow;
/**讲师 model
* Class Lecturer
* @package app\web\model\special
*/
class Lecturer extends ModelBasic
{
use ModelTrait;
public static function setWhere()
{
return self::where(['is_del' => 0, 'is_show' => 1]);
}
/**讲师列表
* @param int $page
* @param int $limit
* @return array
*/
public static function getLecturerList($uid, $page = 1, $limit = 10)
{
$data = self::setWhere()->where('mer_id','>',0)->order('sort DESC,id DESC')->page((int)$page, (int)$limit)
->field('id,mer_id,lecturer_name,lecturer_head,label,curriculum,explain,study,sort,is_show,is_del')
->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']);
}
$count = self::setWhere()->where('mer_id','>',0)->count();
return compact('data', 'count');
}
/**讲师详情
* @param int $id
*/
public static function details($id = 0)
{
$details = self::setWhere()->where('id', $id)->find();
if ($details) {
$details['label'] = json_decode($details['label']);
$details['introduction'] = htmlspecialchars_decode($details['introduction']);
return $details;
} else {
return null;
}
}
public static function information($mer_id)
{
$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,explain')->find();
if ($details) {
$details['label'] = json_decode($details['label']);
return $details;
} else {
return null;
}
}
}