1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>2 型糖尿病患者随访服务记录表</title>
- <link href="css/personalData.css" type="text/css" rel="stylesheet">
- <link href="css/btn.css" type="text/css" rel="stylesheet">
- <link href="http://family.health.gagctv.com/html/tables/js/layer_mobile/need/layer.css?2.0" type="text/css"
- rel="styleSheet" id="layermcss">
- <style>
- table {
- border-collapse: collapse;
- }
- td,
- th {
- border: 1px solid black;
- padding: 8px;
- }
- </style>
- </head>
- <body>
- <div style="font-size:14px; margin: 40px 50px;">
- <h2>2 型糖尿病患者随访服务记录表</h2>
- <p>
- <span>姓名:<span id="patientName"></span></span>
- </p>
- <table>
- <tbody>
- <tr>
- <td colspan="2" class="boldTd require">随访日期</td>
- <td colspan="5"></td>
- </tr>
- </tbody>
- </table>
- </div>
- </body>
- </html>
|