| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- namespace app\agent\controller\finance;
- use app\common\controller\AgentController;
- use app\http\IResponse;
- use Lettered\Support\Auth as IAuth;
- use think\App;
- use think\Request;
- class Log extends AgentController
- {
- protected $model;
- public function __construct(App $app = null, IAuth $auth)
- {
- parent::__construct($app, $auth);
- $this->model = new \app\agent\model\finance\Log();
- }
- /**
- * 显示资源列表
- *
- * @return \think\Response
- * @throws \think\exception\DbException
- */
- public function index()
- {
- $params = input();
- $params['tag'] = input('tag', '');
- $params['limit'] = input('limit', 10);
- $params['created_at'] = input('created_at', '');
- $where['user_id'] = $this->auth->user()['user_id'];
- if ($params['tag']) {
- $where['tag'] = $params['tag'];
- }
- if ($params['created_at']) {
- list($start, $end) = str2arr($params['created_at'], '-');
- $where['created_at'] = ['between', [$start, $end]];
- }
- $list = $this->model->where($where)
- ->order(['id' => 'desc'])
- ->paginate($params['limit'],false);
- return IResponse::paginate($list);
- }
- /**
- * 显示创建资源表单页.
- *
- * @return \think\Response
- */
- public function create()
- {
- //
- }
- /**
- * 保存新建的资源
- *
- * @param \think\Request $request
- * @return \think\Response
- */
- public function save(Request $request)
- {
- //
- }
- /**
- * 显示指定的资源
- *
- * @param int $id
- * @return \think\Response
- */
- public function read($id)
- {
- //
- }
- /**
- * 显示编辑资源表单页.
- *
- * @param int $id
- * @return \think\Response
- */
- public function edit($id)
- {
- //
- }
- /**
- * 保存更新的资源
- *
- * @param \think\Request $request
- * @param int $id
- * @return \think\Response
- */
- public function update(Request $request, $id)
- {
- //
- }
- /**
- * 删除指定资源
- *
- * @param int $id
- * @return \think\Response
- */
- public function delete($id)
- {
- //
- }
- }
|