|
|
|
@ -64,14 +64,24 @@
|
|
|
|
|
padding: 10px;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fix_a {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
justify-items: center;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body class="layui-form">
|
|
|
|
|
<div class="layui-card" style="margin-top: 50px;">
|
|
|
|
|
<div class="layui-card">
|
|
|
|
|
<div class="layui-card-body">
|
|
|
|
|
<!-- <button type="button" class="layui-btn" id="getData">获取数据</button> -->
|
|
|
|
|
<div class="fix">
|
|
|
|
|
|
|
|
|
|
<div class="fix_a">
|
|
|
|
|
<div style="margin-left: 10px;display: flex;align-items: center;font-weight: bolder;color: #409EFF;font-size: 16px;" id="memo"></div>
|
|
|
|
|
<button type="button" class="layui-btn" id="back">返回</button>
|
|
|
|
|
</div>
|
|
|
|
|
<table id="ID-table-demo-data"></table>
|
|
|
|
@ -92,6 +102,12 @@
|
|
|
|
|
var table = layui.table;
|
|
|
|
|
var $ = layui.jquery;
|
|
|
|
|
var id = GetQueryString("id");
|
|
|
|
|
|
|
|
|
|
var id_int = parseInt(id);
|
|
|
|
|
|
|
|
|
|
if (id_int >= 15 && id_int <= 20) {
|
|
|
|
|
$("#memo").html("总量数值单位为“万人”")
|
|
|
|
|
}
|
|
|
|
|
var _data = [];
|
|
|
|
|
$.ajax({
|
|
|
|
|
type: "GET",
|
|
|
|
|