You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.0 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>新型冠状病毒肺炎疫情实时更新</title>
</head>
<body>
<h1 align="center" colspan="10">疫情实时大数据报告</h1>
<div align="center">
<br>
<br>
<table id = 'tabledemo'lay-filter="test">
<table width="600" cellpadding="5" align="center" border="1" cellspacing="0">
<th align="center" colspan="9">医院病例统计</th>
<tr>
<th lay-data="{field:'name', width:100}">医院</th>
<th lay-data="{field:'patients'}">病人数</th>
<th lay-data="{field:'remaining_position'}">剩余床位</th>
<th lay-data="{field:'total_position'}">总床位</th>
<th lay-data="{field:'total_worker'}">工作人员</th>
<th lay-data="{fixed: 'right', width: 160, align:'center', toolbar: '#barDemo'}"></th>
</tr>
{% for item in T_P %}
<tr>
<td>{{item.name}}</td>
<td>{{item.patients}}</td>
<td>{{item.remaining_position}}</td>
<td>{{item.total_position}}</td>
<td>{{item.total_worker}}</td>
</tr>
{% endfor %}
</table>
</body>
</html>