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) { // } }