UserWalletLog.php 588 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace addons\shopro\controller;
  3. use addons\shopro\exception\Exception;
  4. class UserWalletLog extends Base
  5. {
  6. protected $noNeedLogin = ['*'];
  7. protected $noNeedRight = ['*'];
  8. public function index()
  9. {
  10. $params = $this->request->get();
  11. $wallet_type = $params['wallet_type'] ?? 'money';
  12. if (!in_array($wallet_type, ['money', 'score'])) {
  13. $this->error('参数错误');
  14. }
  15. $this->success(($wallet_type == 'money' ? '钱包记录' : '积分记录'), \addons\shopro\model\UserWalletLog::getList($params));
  16. }
  17. }