dataLists(new StaffLists()); } /** * 详情 * @return Json * @throws \Exception * @author L * @data 2024/6/28 11:23 */ public function detail(): Json { $id = $this->request->get('id'); $detail = StaffLogic::detail($id); return $detail ? $this->success(data: StaffLogic::getReturnData()) : $this->fail(StaffLogic::getError()); } }