|
|
|
|
@ -572,7 +572,7 @@ class ReportController extends Controller
|
|
|
|
|
foreach ($item['基础项目列表'] as $i) {
|
|
|
|
|
$content_list[] = [
|
|
|
|
|
'title' => $i['基础项目名称'],
|
|
|
|
|
'content' => $i['结果值'] . $i['结果值单位'],
|
|
|
|
|
'content' => $i['结果值'] .' '. $i['结果值单位'],
|
|
|
|
|
'icon' => $i['异常标识'],
|
|
|
|
|
'desc' => $i['结果值范围'],
|
|
|
|
|
];
|
|
|
|
|
@ -595,11 +595,12 @@ class ReportController extends Controller
|
|
|
|
|
public function list(Request $request)
|
|
|
|
|
{
|
|
|
|
|
$id_number = $request->post('id_number');
|
|
|
|
|
$phone = $request->post('phone');
|
|
|
|
|
$hospital = Hospital::where('id', $request->post('hospital'))->where('del', 2)->first();
|
|
|
|
|
if (!$hospital) Yo::error_echo(100000, ['机构/医院']);
|
|
|
|
|
$peis = new PEISApiController();
|
|
|
|
|
$res = $peis::Post('体检报告查询', $hospital->id, [
|
|
|
|
|
"电话号码" => "",
|
|
|
|
|
"电话号码" => $phone,
|
|
|
|
|
"证件号码" => $id_number,
|
|
|
|
|
"体检号" => ''
|
|
|
|
|
])['data'];
|
|
|
|
|
|