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.

91 lines
3.9 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>各省疫情数据</title>
<link rel="stylesheet" href="/static/layui/css/layui.css">
<style>
a:link{
color: blue;
}
a:visited{
color: blue;
}
a:hover{
color: red;
}
</style>
</head>
<div class="layui-form">
<div align="center">
<img src="../static/cover.jpg" alt="照片"/>
<br>
<a href="/"><font size="4">返回主页</font></a>
</div>
<body>
<div align="center">
<br>
<table id = 'tabledemo'lay-filter="test">
<table width="1080px" border="2" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th lay-data="{field:'date', width:300}"><font size="3">时间</font></th>
<th lay-data="{field:'total_confirmed', width:200}"><font size="3">省份</font></th>
<th lay-data="{field:'new_confirmed', width:200}"><font size="3">累计确诊</font></th>
<th lay-data="{field:'active_cases', width:200}"><font size="3">新增确诊</font></th>
<th lay-data="{field:'imported_cases', width:200}"><font size="3">现有确诊</font></th>
<th lay-data="{field:'recovered', width:200}"><font size="3">境外输入</font></th>
<th lay-data="{field:'new_recovered', width:200}"><font size="3">治愈人数</font></th>
<th lay-data="{field:'deaths', width:200}"><font size="3">死亡人数</font></th>
<th lay-data="{field:'deaths', width:200}"><font size="3">详细信息</font></th>
</tr>
</thead>
<tbody>
{% for item in pro %}
<tr>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.date}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.province_name}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.total_confirmed}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.new_confirmed}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.active_cases}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.imported_cases}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.recovered}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3">{{item.deaths}}</font></td>
<td align="center" style="width:180px; height: 21px;" valign="middle"><font size="3"><a href="/city?date={{item.date}}&pro_name={{item.province_name}}">省内信息</a></font></td>
</tr>
{% endfor %}
</tbody>
</table>
<script>
layui.use('table', function () {
var table = layui.table;
//转换静态表格
table.init('test', {
height: 1000,
width: 800//设置高度
,limit:100
});
table.on('tool(test)', function(obj){ //注tool 是工具条事件名test 是 table 原始容器的属性 lay-filter="对应的值"
var data = obj.data //获得当前行数据
,layEvent = obj.event; //获得 lay-event 对应的值
if(layEvent === 'detail'){
layer.msg('查看操作');
} else if(layEvent === 'del'){
layer.confirm('真的删除行么', function(index){
location.href='/delete?id='+data.id;
});
} else if(layEvent === 'edit'){
location.href='/alter?id=' + data.id + "&provincename=" +data.provincename + "&cityname=" + data.cityname + "&usernumber=" + data.usernumber;
}
});
});
//监听行工具事件
</script>
</body>
</html>