| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\controller\admin\user;
- use app\common\repositories\store\ExcelRepository;
- use crmeb\basic\BaseController;
- use app\common\repositories\user\UserBillRepository;
- use crmeb\services\ExcelService;
- use think\App;
- /**
- * Class UserBill
- * app\controller\admin\user
- * 用户余额记录
- */
- class UserBill extends BaseController
- {
- protected $repository;
- public function __construct(App $app, UserBillRepository $repository)
- {
- parent::__construct($app);
- $this->repository = $repository;
- }
- /**
- * 用户余额相关记录
- * @return \think\response\Json
- * @author Qinii
- * @day 2023/10/16
- */
- public function getList()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'date', 'type','uid','phone','real_name','nickname']);
- $where['category'] = [$this->repository::CATEGORY_NOW_MONEY,$this->repository::CATEGORY_SVIP_PAY];
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- /**
- * 用户等级成长值记录
- * @return \think\response\Json
- * @author Qinii
- * @day 2023/10/16
- */
- public function getMembers()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'date', 'type', ['category', $this->repository::CATEGORY_SYS_MEMBERS], 'uid']);
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- /**
- * 获取记录类型 - 用于下啦筛选
- * @return \think\response\Json
- * @author Qinii
- * @day 2023/10/16
- */
- public function type()
- {
- $category = $this->request->param('category', $this->repository::CATEGORY_NOW_MONEY);
- return app('json')->success($this->repository->type($category));
- }
- /**
- * 导出
- * @return \think\response\Json
- * @author Qinii
- * @day 2023/10/16
- */
- public function export()
- {
- $where = $this->request->params(['keyword', 'date', 'type']);
- [$page, $limit] = $this->getPage();
- $data = app()->make(ExcelService::class)->bill($where, $page, $limit);
- return app('json')->success($data);
- }
- public function brokerage_list()
- {
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'date', 'type','uid','phone','real_name','nickname']);
- $where['category'] = [$this->repository::CATEGORY_BROKERAGE];
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- // 分红积分记录
- public function award_integral_list(){
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'date', 'type','uid','phone','real_name','nickname']);
- $where['category'] = [$this->repository::CATEGORY_AWARD_INTEGRAL];
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- // 分红份额记录
- public function award_range_list(){
- [$page, $limit] = $this->getPage();
- $where = $this->request->params(['keyword', 'date', 'type','uid','phone','real_name','nickname']);
- $where['category'] = [$this->repository::CATEGORY_AWARD_RANGE];
- return app('json')->success($this->repository->getList($where, $page, $limit));
- }
- }
|