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.

41 lines
1.2 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:'city', width:100}">城市</th>
<th lay-data="{field:'area'}"></th>
<th lay-data="{field:'patient_count'}">病人数量</th>
<th lay-data="{field:'suspected'}">疑似病例</th>
<th lay-data="{field:'no_cases'}">无症状</th>
<th lay-data="{field:'mild_cases'}">轻症</th>
<th lay-data="{field:'severe_cases'}">重症</th>
<th lay-data="{fixed: 'right', width: 160, align:'center', toolbar: '#barDemo'}"></th>
</tr>
{% for item in city_Post %}
<tr>
<td>{{item.city}}</td>
<td>{{item.area}}</td>
<td>{{item.patient_count}}</td>
<td>{{item.suspected}}</td>
<td>{{item.no_cases}}</td>
<td>{{item.mild_cases}}</td>
<td>{{item.severe_cases}}</td>
</tr>
{% endfor %}
</table>
</body>
</html>