'6', 'h4' => '2', ]; $dnet = new AspNetZhuanController(); $res = $dnet->GetDoctorDateList([ "yyid" => $hospital_map["h$hospital"], "rq" => $date, "action" => "1" ]); $list = []; if ($res['code'] == '200' && count($res['yisheng']) != 0) { foreach ($res['yisheng'] as $key => $value) { $list[] = [ 'head_img' => 'data:image/jpeg;base64,' . $value['U_IMG'], 'name' => $value['U_NAME'], 'level' => $value['ZC_NAME'], 'hospital' => '', 'time' => $value['U_GDPB'], 'desc' => '' ]; } } return \Yz::Return(true, "查询完成", ['list' => $list]); } }