model = new \app\api\model\taxi\MotorRecord(); } /** * 显示资源列表 * * @return \think\Response * @throws \Lettered\Support\Exceptions\FailedException * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ public function index() { $list = []; // 按月份 for($month = 1; $month <= date('m'); $month ++ ){ $data = $this->model->where(['user_id' => $this->auth->user()['id']]) ->field("*,FROM_UNIXTIME(created_at, '%Y-%m-%d %H:%i:%s') as created_at") ->where('type', 30) ->whereTime('created_at', 'between', $this->model->getMonthTime($month)) ->order(['id' => 'desc', 'updated_at' => 'desc']) ->select(); if (count($data) != 0) $list[date('Y') . $month] = $data; } return $this->ApiJson(0, '获取信息成功', $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) { // } }