<!DOCTYPE html>
|
<html>
|
|
<head>
|
<meta charset="utf-8" />
|
<title>公共</title>
|
<link rel="stylesheet" href="./css/style.css">
|
<link rel="stylesheet" href="./css/universal.css">
|
<style>
|
.universal-container td {
|
line-height: 32px !important;
|
font-size: 16px !important;
|
}
|
|
.universal-container tr td:first-child {
|
width: 60px;
|
}
|
|
.universal-container tr td:last-child {
|
width: 140px;
|
}
|
</style>
|
</head>
|
|
<body>
|
<div class="universal-container">
|
<div class="universal-box">
|
<div>
|
<table>
|
<tbody>
|
<tr>
|
<td>河流名称</td>
|
<td class="riverName"></td>
|
</tr>
|
<tr>
|
<td>地址</td>
|
<td class="address"></td>
|
</tr>
|
<tr>
|
<td>类别</td>
|
<td class="type"></td>
|
</tr>
|
|
<tr>
|
<td>问题</td>
|
<td class="title"></td>
|
</tr>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</div>
|
<script src="../../js/jquery-1.11.3.min.js"></script>
|
<script src="../../js/echarts.min.js"></script>
|
<script src="../../libs/laydate/laydate.js"></script>
|
<script src="./js/getUrlParams.js"></script>
|
<script>
|
var type = {
|
'1': '乱占',
|
'2': '乱采',
|
'3': '乱堆',
|
'4': '乱建',
|
'5': '其他'
|
}
|
var params = getUrlParams();
|
$('.universal-box .riverName').text(params.riverName);
|
$('.universal-box .address').text(params.address);
|
$('.universal-box .type').text(type[params.type]);
|
$('.universal-box .title').text(params.title);
|
</script>
|
</body>
|
|
</html>
|