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.

38 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>
<a href="/insert3_page">添加城市</a>
<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:'worker_id', width:100}">编号</th>
<th lay-data="{field:'name'}">姓名</th>
<th lay-data="{field:'treatment_point_id'}">治疗点</th>
<th lay-data="{field:'phone'}">电话</th>
<th lay-data="{fixed: 'right', width: 160, align:'center', toolbar: '#barDemo'}"></th>
</tr>
{% for item in M_W %}
<tr>
<td>{{item.worker_id}}</td>
<td>{{item.name}}</td>
<td>{{item.treatment_point_id}}</td>
<td>{{item.phone}}</td>
<td><a href='/alter3?worker_id={{item.worker_id}}&name={{ item.name }}&treatment_point_id={{ item.treatment_point_id }}&phone={{ item.phone }}'>编辑</a>
<a href="/delete3?worker_id={{ item.worker_id }}">删除</a> </td>
</tr>
{% endfor %}
</table>
</body>
</html>