request->only(['page' => 1, 'size' => 10], 'post'); return ServiceLogic::list($param); } //服务详情 public function read() { $id = $this->request->post('id/d', 0); return ServiceLogic::read($id); } }