|
|
<?php if (!defined('THINK_PATH')) exit(); /*a:1:{s:88:"/alidata/www/myproject/hospital/public/../application/admin/view/patient_info/check.html";i:1590930493;}*/ ?>
|
|
|
<!DOCTYPE html>
|
|
|
<html>
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<title>查看详情</title>
|
|
|
<meta name="renderer" content="webkit">
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
<meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
|
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
|
|
|
<link rel="stylesheet" href="/hospital/public/static/admin/x-admin/css/font.css">
|
|
|
<link rel="stylesheet" href="/hospital/public/static/admin/x-admin/css/xadmin.css">
|
|
|
<script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
|
|
|
<script type="text/javascript" src="/hospital/public/static/admin/x-admin/lib/layui/layui.js" charset="utf-8"></script>
|
|
|
<script type="text/javascript" src="/hospital/public/static/admin/x-admin/js/xadmin.js"></script>
|
|
|
<!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
|
|
|
<!--[if lt IE 9]>
|
|
|
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
|
|
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
|
|
<![endif]-->
|
|
|
<script>
|
|
|
const writeUrl = "<?php echo url('write','',''); ?>";
|
|
|
</script>
|
|
|
</head>
|
|
|
|
|
|
<body class="layui-anim layui-anim-up">
|
|
|
<div class="x-body">
|
|
|
<table class="layui-table">
|
|
|
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<td width="80vh">姓名: <?php echo $patient['name']; ?></td>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td width="80vh">性别: <?php echo $patient['sex']; ?></td>
|
|
|
</tbody>
|
|
|
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<td width="80vh">科: <?php echo $patient['department']; ?></td>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
<td width="80vh">诊断结果: <?php echo $patient['description']; ?></td>
|
|
|
</tbody>
|
|
|
|
|
|
<tbody><tr>
|
|
|
<td class="td-manage">
|
|
|
<a title="填写诊断结果" onclick="x_admin_show('填写 '+'<?php echo $patient['name']; ?>'+' 的诊断结果',writeUrl+'/id/<?php echo $patient['id']; ?>',600,300)" href="javascript:;">
|
|
|
<i class="layui-icon"></i>
|
|
|
</a>
|
|
|
</td>
|
|
|
</tr></tbody>
|
|
|
|
|
|
</table>
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
</html>
|