UserRecharge.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\controller\admin\user;
  12. use crmeb\basic\BaseController;
  13. use app\common\repositories\user\UserRechargeRepository;
  14. use think\App;
  15. class UserRecharge extends BaseController
  16. {
  17. protected $repository;
  18. public function __construct(App $app, UserRechargeRepository $repository)
  19. {
  20. parent::__construct($app);
  21. $this->repository = $repository;
  22. }
  23. public function getList()
  24. {
  25. $where = $this->request->params(['date', 'paid', 'keyword']);
  26. [$page, $limit] = $this->getPage();
  27. return app('json')->success($this->repository->getList($where, $page, $limit));
  28. }
  29. public function total()
  30. {
  31. $totalRefundPrice = $this->repository->totalRefundPrice();
  32. $totalPayPrice = $this->repository->totalPayPrice();
  33. $totalRoutinePrice = $this->repository->totalRoutinePrice();
  34. $totalWxPrice = $this->repository->totalWxPrice();
  35. return app('json')->success(compact('totalWxPrice', 'totalRoutinePrice', 'totalPayPrice', 'totalRefundPrice'));
  36. }
  37. }