test_lgq/niucloud/app/api/controller/member/MemberCashOut.php
2024-01-24 17:36:08 +08:00

92 lines
2.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Niucloud-admin 企业快速开发的saas管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud-admin.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\api\controller\member;
use app\dict\member\MemberAccountTypeDict;
use app\dict\pay\TransferDict;
use app\service\api\member\MemberCashOutService;
use core\base\BaseApiController;
use think\Response;
class MemberCashOut extends BaseApiController
{
/**
* 会员提现列表
* @return Response
*/
public function lists()
{
$data = array_filter($this->request->params([
[ 'status', '' ],
[ 'account_type', '' ]
]), function($value){
return $value !== '';
});
return success(( new MemberCashOutService() )->getPage($data));
}
/**
* 提现详情
* @return Response
*/
public function info($id)
{
return success(( new MemberCashOutService() )->getInfo($id));
}
/**
* 提现配置
* @return Response
*/
public function config()
{
return success(( new MemberCashOutService() )->getCashOutConfig());
}
/**
* 转账方式
* @return Response
*/
public function getTransferType()
{
return success(TransferDict::getTransferType([], false));
}
/**
* 申请提现
* @return Response
*/
public function apply()
{
$data = $this->request->params([
[ 'apply_money', 0 ],
[ 'account_type', MemberAccountTypeDict::MONEY ],
[ 'transfer_type', '' ],
[ 'account_id', 0 ]
]);
$this->validate($data, 'app\validate\member\CashOut.apply');
return success(( new MemberCashOutService() )->apply($data));
}
/**
* 撤销提现申请
* @param $id
* @return Response
*/
public function cancel($id)
{
return success(( new MemberCashOutService() )->cancel($id));
}
}