info.lt 214 B

12345678
  1. //查看详情
  2. public function info()
  3. {
  4. $id = $this->request->param('id');
  5. $info = $this->model{%withRelation%}->find($id);
  6. return $this->success('获取成功', $info);
  7. }