|
@@ -869,6 +869,30 @@ class User extends BaseController
|
|
|
$data = $repository->userList(['category' => 'award_range'], $id, $page, $limit);
|
|
$data = $repository->userList(['category' => 'award_range'], $id, $page, $limit);
|
|
|
return app('json')->success($data);
|
|
return app('json')->success($data);
|
|
|
}
|
|
}
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 冻结份额
|
|
|
|
|
+ * @param $id
|
|
|
|
|
+ * @author Qinii
|
|
|
|
|
+ * @day 2023/4/25
|
|
|
|
|
+ */
|
|
|
|
|
+ public function awardUnclaimedRange($id, UserBillRepository $repository)
|
|
|
|
|
+ {
|
|
|
|
|
+ [$page, $limit] = $this->getPage();
|
|
|
|
|
+ $data = $repository->userList(['category' => 'award_unclaimed_range'], $id, $page, $limit);
|
|
|
|
|
+ return app('json')->success($data);
|
|
|
|
|
+ }
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 冻结奖金
|
|
|
|
|
+ * @param $id
|
|
|
|
|
+ * @author Qinii
|
|
|
|
|
+ * @day 2023/4/25
|
|
|
|
|
+ */
|
|
|
|
|
+ public function freezeBrokerage($id, UserBillRepository $repository)
|
|
|
|
|
+ {
|
|
|
|
|
+ [$page, $limit] = $this->getPage();
|
|
|
|
|
+ $data = $repository->userList(['category' => 'freeze_brokerage'], $id, $page, $limit);
|
|
|
|
|
+ return app('json')->success($data);
|
|
|
|
|
+ }
|
|
|
/**
|
|
/**
|
|
|
* 签到记录
|
|
* 签到记录
|
|
|
* @param $id
|
|
* @param $id
|