getDoctorIndex(); return $this->response->json($data); } /** * 患者端-首页 * @return ResponseInterface */ public function patientIndex(): ResponseInterface { $IndexService = new IndexService(); $data = $IndexService->getPatientIndex(); return $this->response->json($data); } /** * 医师端-首页 * @return ResponseInterface */ public function pharmacistIndex(): ResponseInterface { $IndexService = new IndexService(); $data = $IndexService->getPharmacistIndex(); return $this->response->json($data); } }