You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
682 B
39 lines
682 B
<?php
|
|
|
|
namespace app\distribution\controller\api;
|
|
|
|
class Config extends Base
|
|
{
|
|
|
|
/**
|
|
* 获取提现信息
|
|
* @date 2022-11-04
|
|
*/
|
|
public function getWithdrawInfo()
|
|
{
|
|
$config_logic = new \app\distribution\logic\Config();
|
|
|
|
// 获取提现信息
|
|
$config = $config_logic->getWithdrawInfo();
|
|
|
|
return json($config);
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取分销说明
|
|
* @date 2022-11-04
|
|
*/
|
|
public function getDistributionNotice()
|
|
{
|
|
$config_logic = new \app\distribution\logic\Config();
|
|
|
|
// 获取分销说明
|
|
$config = $config_logic->getDistributionNotice();
|
|
|
|
return json($config);
|
|
}
|
|
|
|
|
|
}
|