This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/store/controller/user/Balance.php
2020-04-25 22:20:29 +08:00

31 lines
657 B
PHP

<?php
namespace app\store\controller\user;
use app\store\controller\Controller;
use app\store\model\user\BalanceLog as BalanceLogModel;
/**
* 余额明细
* Class Balance
* @package app\store\controller\user
*/
class Balance extends Controller
{
/**
* 余额明细
* @return mixed
* @throws \think\exception\DbException
*/
public function log()
{
$model = new BalanceLogModel;
return $this->fetch('log', [
// 充值记录列表
'list' => $model->getList($this->request->param()),
// 属性集
'attributes' => $model::getAttributes(),
]);
}
}