| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- 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(),
- ]);
- }
- }
|