This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/store/model/sharing/Active.php
2020-04-25 22:20:29 +08:00

31 lines
697 B
PHP

<?php
namespace app\store\model\sharing;
use app\common\model\sharing\Active as ActiveModel;
/**
* 拼团拼单模型
* Class Active
* @package app\store\model\sharing
*/
class Active extends ActiveModel
{
/**
* 获取拼单列表
* @param null $active_id
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function getList($active_id = null)
{
$active_id > 0 && $this->where('active_id', '=', $active_id);
return $this->with(['goods.image.file', 'user'])
->order(['create_time' => 'desc'])
->paginate(15, false, [
'query' => request()->request()
]);
}
}