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
37 lines
1.0 KiB
5 years ago
|
<!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:'treatment_point_id', width:100}">编号</th>
|
||
|
<th lay-data="{field:'name'}">医院</th>
|
||
|
<th lay-data="{field:'total_position'}">总床位</th>
|
||
|
<th lay-data="{field:'area_id'}">地区编号</th>
|
||
|
<th lay-data="{field:'city_id'}">城市编号</th>
|
||
|
<th lay-data="{fixed: 'right', width: 160, align:'center', toolbar: '#barDemo'}"></th>
|
||
|
</tr>
|
||
|
{% for item in T_P %}
|
||
|
<tr>
|
||
|
<td>{{item.treatment_point_id}}</td>
|
||
|
<td>{{item.name}}</td>
|
||
|
<td>{{item.total_position}}</td>
|
||
|
<td>{{item.area_id}}</td>
|
||
|
<td>{{item.city_id}}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|