| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\store\model\sharing;
- use app\common\model\sharing\ActiveUsers as ActiveUsersModel;
- /**
- * 拼团拼单成员模型
- * Class ActiveUsers
- * @package app\store\model\sharing
- */
- class ActiveUsers extends ActiveUsersModel
- {
- /**
- * 获取拼单成员列表
- * @param $active_id
- * @return \think\Paginator
- * @throws \think\exception\DbException
- */
- public function getList($active_id)
- {
- return $this->with(['sharingOrder.address', 'user'])
- ->where('active_id', '=', $active_id)
- ->order(['create_time' => 'asc'])
- ->paginate(15, false, [
- 'query' => request()->request()
- ]);
- }
- }
|