mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace app\data\controller\api\auth;
|
|
|
|
use app\data\controller\api\Auth;
|
|
use app\data\service\RebateService;
|
|
|
|
/**
|
|
* 用户返利管理
|
|
* Class Rebate
|
|
* @package app\data\controller\api\auth
|
|
*/
|
|
class Rebate extends Auth
|
|
{
|
|
/**
|
|
* 绑定数据表
|
|
* @var string
|
|
*/
|
|
private $table = 'DataUserRebate';
|
|
|
|
/**
|
|
* 获取用户返利记录
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function get()
|
|
{
|
|
$date = input('date', date('Y-m'));
|
|
$year = substr($date, 0, 4);
|
|
|
|
$map = ['uid' => $this->uuid];
|
|
$query = $this->_query($this->table)->where($map)->equal('type,status');
|
|
$result = $query->whereLike('date', "{$date}-%")->order('id desc')->page(true, false, false, 15);
|
|
$result['total'] = [
|
|
'年度' => $this->_query($this->table)->where($map)->equal('type,status')->whereLike('date', "{$year}-%")->db()->sum('amount'),
|
|
'月度' => $this->_query($this->table)->where($map)->equal('type,status')->whereLike('date', "{$date}-%")->db()->sum('amount'),
|
|
];
|
|
$this->success('获取返利统计', $result);
|
|
}
|
|
|
|
/**
|
|
* 获取我的奖励
|
|
*/
|
|
public function prize()
|
|
{
|
|
[$map, $data] = [['number' => $this->user['vip_code']], []];
|
|
$prizes = $this->app->db->name($this->table)->group('name')->column('name');
|
|
$rebate = $this->app->db->name('DataUserUpgrade')->where($map)->value('rebate_rule', '');
|
|
$codemap = array_merge($prizes, str2arr($rebate));
|
|
foreach (RebateService::PRIZES as $prize) {
|
|
if (in_array($prize['code'], $codemap)) $data[] = $prize;
|
|
}
|
|
$this->success('获取我的奖励', $data);
|
|
}
|
|
|
|
/**
|
|
* 获取奖励配置
|
|
*/
|
|
public function prizes()
|
|
{
|
|
$this->success('获取系统奖励', array_values(RebateService::PRIZES));
|
|
}
|
|
} |