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.
81 lines
2.8 KiB
81 lines
2.8 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
|
|
// +----------------------------------------------------------------------
|
|
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\web\model\merchant;
|
|
|
|
use traits\ModelTrait;
|
|
use basic\ModelBasic;
|
|
|
|
class MerchantFollow extends ModelBasic
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**用户关注 取消 讲师关注
|
|
* @param $uid
|
|
* @param $mer_id
|
|
* @param $is_follow 0 =取消关注 1= 关注
|
|
*/
|
|
public static function user_merchant_follow($uid, $mer_id, $is_follow = 0)
|
|
{
|
|
$data['is_follow'] = $is_follow;
|
|
if (self::be(['uid' => $uid, 'mer_id' => $mer_id])) {
|
|
if ($is_follow == 1) {
|
|
$data['follow_time'] = time();
|
|
} else {
|
|
$data['unfollow_time'] = time();
|
|
}
|
|
return self::where(['uid' => $uid, 'mer_id' => $mer_id])->update($data);
|
|
} else {
|
|
$data['uid'] = $uid;
|
|
$data['mer_id'] = $mer_id;
|
|
$data['follow_time'] = time();
|
|
return self::set($data);
|
|
}
|
|
}
|
|
|
|
/**条件处理
|
|
* @param $uid
|
|
* @return MerchantFollow
|
|
*/
|
|
public static function setWhere($uid)
|
|
{
|
|
$model = self::alias('f')->where(['f.uid' => $uid, 'f.is_follow' => 1,'l.is_show' => 1, 'l.is_del' => 0])
|
|
->join('Lecturer l', 'f.mer_id=l.mer_id')->where('l.mer_id','>',0);
|
|
return $model;
|
|
}
|
|
|
|
/**讲师关注列表
|
|
* @param $uid
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @return array
|
|
*/
|
|
public static function get_user_merchant_follow_list($uid, $page = 1, $limit = 20)
|
|
{
|
|
$data = self::setWhere($uid)->page((int)$page, (int)$limit)
|
|
->order('f.follow_time desc')->field('f.uid,f.mer_id,f.is_follow,l.id,l.mer_id,l.is_show,l.is_del,l.lecturer_name,l.lecturer_head,l.label,l.introduction,l.study,l.curriculum,l.explain')
|
|
->select();
|
|
$data = count($data) > 0 ? $data->toArray() : [];
|
|
$count = self::setWhere($uid)->count();
|
|
return compact('data', 'count');
|
|
}
|
|
|
|
/**是否关注
|
|
* @param $uid
|
|
* @param $mer_id
|
|
*/
|
|
public static function isFollow($uid, $mer_id)
|
|
{
|
|
$follow=self::where(['uid'=>$uid,'mer_id'=>$mer_id,'is_follow'=>1])->find();
|
|
if($follow) return true;
|
|
else return false;
|
|
}
|
|
}
|
|
|