| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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()
- ]);
- }
- }
|