getDetectionProjectList(); return $this->response->json($data); } /** * 获取合作公司检测项目详情 * @return ResponseInterface */ public function getDetectionProject(): ResponseInterface { $detectionService = new DetectionService(); $data = $detectionService->getDetectionProject(); return $this->response->json($data); } /** * 获取检测机构合作医生列表 * @return ResponseInterface */ public function getDetectionDoctorList(): ResponseInterface { $detectionService = new DetectionService(); $data = $detectionService->getDetectionDoctorList(); return $this->response->json($data); } /** * 获取检测项目用途列表 * @return ResponseInterface */ public function getDetectionProjectPurposeList(): ResponseInterface { $detectionService = new DetectionService(); $data = $detectionService->getDetectionProjectPurposeList(); return $this->response->json($data); } // 创建检测订单 public function addDetectionOrder(){ $request = $this->container->get(DetectionRequest::class); $request->scene('addDetectionOrder')->validateResolved(); $detectionService = new DetectionService(); $data = $detectionService->getDetectionDoctorList(); return $this->response->json($data); } }