全栈小学生 ad6298a9a9 up
2024-11-22 15:08:42 +08:00

153 lines
4.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 企业快速开发的多应用管理平台
// +----------------------------------------------------------------------
// | 官方网址https://www.niucloud.com
// +----------------------------------------------------------------------
// | niucloud团队 版权所有 开源版本可自由商用
// +----------------------------------------------------------------------
// | Author: Niucloud Team
// +----------------------------------------------------------------------
namespace app\adminapi\controller\member;
use app\service\admin\member\MemberConfigService;
use app\service\admin\member\MemberService;
use core\base\BaseAdminController;
use think\Response;
class Config extends BaseAdminController
{
/**
* 获取登录设置
* @return Response
*/
public function getLoginConfig()
{
return success(( new MemberConfigService() )->getLoginConfig());
}
/**
* 注册与登录设置
* @return Response
*/
public function setLoginConfig()
{
$data = $this->request->params([
[ 'is_username', 1 ],
[ 'is_mobile', 0 ],
[ 'is_auth_register', 1 ],
[ 'is_force_access_user_info', 0 ],
[ 'is_bind_mobile', 0 ],
[ 'agreement_show', 0 ],
[ 'bg_url', '' ],
[ 'desc', '' ]
]);
$this->validate($data, 'app\validate\member\LoginConfig.set');
( new MemberConfigService() )->setLoginConfig($data);
return success('MODIFY_SUCCESS');
}
/**
* 获取提现设置
* @return Response
*/
public function getCashOutConfig()
{
return success(( new MemberConfigService() )->getCashOutConfig());
}
/**
* 提现设置
* @return Response
*/
public function setCashOutConfig()
{
$data = $this->request->params([
[ 'is_open', 0 ], //是否开启
[ 'min', 0.01 ], //最低提现金额
[ 'rate', 0 ], //提现手续费比率
[ 'is_auto_verify', 0 ], //是否自动审核
[ 'is_auto_transfer', 0 ], //是否自动转账
[ 'transfer_type', [] ] //转账方式
]);
$this->validate($data, 'app\validate\member\CashOutConfig.set');
( new MemberConfigService() )->setCashOutConfig($data);
return success('SET_SUCCESS');
}
/**
* 获取会员配置
* @return Response
*/
public function getMemberConfig()
{
return success(( new MemberConfigService() )->getMemberConfig());
}
/**
* 设置会员配置
* @return Response
*/
public function setMemberConfig()
{
$data = $this->request->params([
[ 'prefix', '' ],
[ 'length', 10 ]
]);
$this->validate($data, 'app\validate\member\MemberConfig.set');
( new MemberConfigService() )->setMemberConfig($data);
return success('MODIFY_SUCCESS');
}
/**
* 获取成长值规则配置
* @return Response
*/
public function getGrowthRuleConfig()
{
return success(( new MemberConfigService() )->getGrowthRuleConfig());
}
/**
* 配置成长值规则
* @return Response
*/
public function setGrowthRuleConfig()
{
$param = [];
$rules = ( new MemberService() )->getGrowthRuleDict();
foreach ($rules as $key => $item) {
$param[] = [ $key, [] ];
}
$data = $this->request->params($param);
( new MemberConfigService() )->setGrowthRuleConfig($data);
return success('MODIFY_SUCCESS');
}
/**
* 获取积分规则配置
* @return Response
*/
public function getPointRuleConfig()
{
return success(( new MemberConfigService() )->getPointRuleConfig());
}
/**
* 配置积分规则
* @return Response
*/
public function setPointRuleConfig()
{
$param = [];
$rules = ( new MemberService() )->getPointRuleDict();
foreach ($rules as $key => $item) {
$param[] = [ $key, [] ];
}
$data = $this->request->params($param);
( new MemberConfigService() )->setPointRuleConfig($data);
return success('MODIFY_SUCCESS');
}
}