12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace addons\cms\controller\api;
- use addons\cms\model\MoneyLog;
- use addons\cms\model\ScoreLog;
- class TheLogs extends Base
- {
- protected $noNeedLogin = [];
- /**
- * 余额日志
- * @return string
- */
- public function money()
- {
- $list = MoneyLog::where(['user_id' => $this->auth->id])
- ->order('id desc')
- ->paginate(10);
- $this->success('', $list);
- }
- /**
- * 积分日志
- * @return string
- */
- public function score()
- {
- $list = ScoreLog::where(['user_id' => $this->auth->id])
- ->order('id desc')
- ->paginate(10);
- $this->success('', $list);
- }
- }
|