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/wap/model/special/SpecialWatch.php

56 lines
1.9 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\wap\model\special;
use basic\ModelBasic;
use traits\ModelTrait;
use think\Db;
/**专题观看记录
* Class SpecialWatch
* @package app\wap\model\special
*/
class SpecialWatch extends ModelBasic
{
use ModelTrait;
/**
* 素材观看时间
*/
public static function materialViewing($uid, $data)
{
$viewing = self::where(['uid' => $uid, 'special_id' => $data['special_id'], 'task_id' => $data['task_id']])->find();
if ($viewing) {
$dat['viewing_time'] = $data['viewing_time'];
$dat['percentage'] = $data['percentage'];
$dat['total'] = $data['total'];
if ($data['percentage'] > $viewing['percentage']) {
return self::edit($dat, $viewing['id']);
} else {
return true;
}
} else {
$data['uid'] = $uid;
$data['add_time'] = time();
return self::set($data);
}
}
/**
* 查看素材是否观看
*/
public static function whetherWatch($uid, $special_id = 0, $task_id = 0)
{
return self::where(['uid' => $uid, 'special_id' => $special_id, 'task_id' => $task_id])->find();
}
}