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/Recharge.php

31 lines
652 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\store\controller\user;
use app\store\controller\Controller;
use app\store\model\recharge\Order as OrderModel;
/**
* 余额记录
* Class Recharge
* @package app\store\controller\user
*/
class Recharge extends Controller
{
/**
* 充值记录
* @return mixed
* @throws \think\exception\DbException
*/
public function order()
{
$model = new OrderModel;
return $this->fetch('order', [
// 充值记录列表
'list' => $model->getList($this->request->param()),
// 属性集
'attributes' => $model::getAttributes(),
]);
}
}