363 lines
15 KiB
HTML
363 lines
15 KiB
HTML
<!doctype html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<base th:href="${#request.getContextPath() + '/'}">
|
|
<meta charset="utf-8">
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
|
<link rel="stylesheet" href="assets/fonts/font-awesome/css/font-awesome.css"/>
|
|
<link rel="stylesheet" href="assets/layuiadmin/layui/css/layui.css" media="all">
|
|
<link rel="stylesheet" href="assets/layuiadmin/style/admin.css" media="all">
|
|
</head>
|
|
<body>
|
|
<div class="layui-fluid layui-anim layui-anim-fadein">
|
|
<div class="layui-row layui-col-space5">
|
|
<div class="layui-col-md3 layui-col-sm3">
|
|
<div class="layui-card" id="left-card-div" style="">
|
|
<div class="layui-card-body">
|
|
<div style="padding: 10px 0px; border-bottom: 1px solid #DDDDDD;text-align: right">
|
|
<!--<button typeof="button" class="layui-btn layui-btn-normal layui-btn-sm">数据图表</button>-->
|
|
<button typeof="button" id="backToArea" class="layui-btn layui-btn-sm">返回上级</button>
|
|
</div>
|
|
<div>
|
|
<table class="layui-table">
|
|
<colgroup>
|
|
<col width="200">
|
|
<col width="150">
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align: center;">行政区域</th>
|
|
<th style="text-align: center;">数量</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="areaUserCountBox"></tbody>
|
|
<script type="text/html" id="areaUserCountTemplate">
|
|
{{# for(var i = 0, item; item = d[i++];) { }}
|
|
<tr>
|
|
<td>
|
|
{{# if(item.hasSubArea == 'false'){ }}
|
|
<a href="javascript:void(0)" data-hansubarea="{{item.hasSubArea}}">{{item.areaName}}</a>
|
|
{{# } }}
|
|
{{# if(item.hasSubArea == 'true'){ }}
|
|
<a href="javascript:void(0)" class="change-area" style="color: #0a54a6;text-decoration: underline"
|
|
data-areaid="{{item.areaId}}" data-areacode="{{item.areaCode}}">{{item.areaName}}</a>
|
|
{{# } }}
|
|
</td>
|
|
<td style="text-align: center;">
|
|
{{# if(item.areaPeopleNum == '0'){ }}
|
|
<a href="javascript:void(0)">{{item.areaPeopleNum}}</a>
|
|
{{# } }}
|
|
{{# if(item.areaPeopleNum != '0'){ }}
|
|
<a href="javascript:void(0)" class="people-event" style="color: #0a54a6;text-decoration: underline"
|
|
data-areacode="{{item.areaCode}}">{{item.areaPeopleNum}}</a>
|
|
{{# } }}
|
|
</td>
|
|
</tr>
|
|
{{# } }}
|
|
</script>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-md9 layui-col-sm9">
|
|
<div class="layui-card">
|
|
<div class="layui-card-body">
|
|
<div class="test-table-reload-btn" style="margin-bottom: 10px;">
|
|
<div class="layui-inline">
|
|
<input type="text" id="keywords" class="layui-input search-item" placeholder="输入关键字">
|
|
</div>
|
|
<div class="layui-inline">
|
|
<input type="text" id="startTime" class="layui-input search-item" placeholder="开始时间" readonly>
|
|
</div>
|
|
<div class="layui-inline">
|
|
<input type="text" id="endTime" class="layui-input search-item" placeholder="结束时间" readonly>
|
|
</div>
|
|
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
|
<i class="fa fa-lg fa-search"></i> 搜索
|
|
</button>
|
|
</div>
|
|
<table class="layui-hide" id="dataTable" lay-filter="dataTable"></table>
|
|
<!-- 表头按钮组 -->
|
|
<script type="text/html" id="headerToolBar">
|
|
<div class="layui-btn-group">
|
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
|
<i class="fa fa-lg fa-edit"></i> 编辑
|
|
</button>
|
|
</div>
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="assets/layuiadmin/layui/layui.js"></script>
|
|
<script src="assets/js/vendor/viewer/viewer.min.js"></script>
|
|
<script>
|
|
layui.config({
|
|
base: 'assets/layuiadmin/'
|
|
}).extend({
|
|
index: 'lib/index'
|
|
}).use(['index', 'table', 'laytpl', 'laydate', 'common'], function() {
|
|
var $ = layui.$;
|
|
var $win = $(window);
|
|
var table = layui.table;
|
|
var admin = layui.admin;
|
|
var laydate = layui.laydate;
|
|
var laytpl = layui.laytpl;
|
|
var common = layui.common;
|
|
var resizeTimeout = null;
|
|
var tableUrl = 'api/buildinghouse/listpage';
|
|
var buildingId = top.restAjax.params(window.location.href).buildingId;
|
|
|
|
var areaParentId = [''];
|
|
var areaCode = '';
|
|
|
|
$('#left-card-div').height($win.height() - 30);
|
|
$('#left-card-div').css('overflow', 'auto');
|
|
|
|
function initData(){
|
|
initDate();
|
|
initTable();
|
|
listAreaUserCounts();
|
|
}
|
|
initData();
|
|
|
|
function listAreaUserCounts(){
|
|
var loadIndex = layer.load(0,{shade : 0.3});
|
|
top.restAjax.get(top.restAjax.path('api/buildinghouse/data-counts', []),
|
|
{areaParentId : areaParentId[areaParentId.length - 1]}, null, function (code, data) {
|
|
laytpl(document.getElementById('areaUserCountTemplate').innerHTML).render(data, function(html) {
|
|
document.getElementById('areaUserCountBox').innerHTML = html;
|
|
});
|
|
layer.close(loadIndex);
|
|
}, function (code, data) {
|
|
top.dialog.msg(data.msg);
|
|
});
|
|
}
|
|
|
|
// 绑定点击区域切换事件
|
|
$(document).on('click', '.change-area', function(){
|
|
areaParentId.push($(this).data().areaid);
|
|
areaCode = '';
|
|
listAreaUserCounts();
|
|
reloadTable();
|
|
});
|
|
|
|
// 点击人员查看人员列表
|
|
$(document).on('click', '.people-event', function(){
|
|
areaCode = $(this).data().areacode;
|
|
reloadTable();
|
|
});
|
|
|
|
// 返回上级
|
|
$(document).on('click', '#backToArea',function(){
|
|
if(areaParentId.length > 1){
|
|
areaParentId.splice(areaParentId.length - 1, 1);
|
|
}
|
|
areaCode = '';
|
|
listAreaUserCounts();
|
|
reloadTable();
|
|
});
|
|
|
|
// 初始化表格
|
|
function initTable() {
|
|
if(buildingId) {
|
|
tableUrl += '?buildingId={buildingId}'
|
|
}
|
|
table.render({
|
|
elem: '#dataTable',
|
|
id: 'dataTable',
|
|
url: top.restAjax.path(tableUrl, [buildingId]),
|
|
width: admin.screen() > 1 ? '100%' : '',
|
|
height: $win.height() - 90,
|
|
limit: 20,
|
|
limits: [20, 40, 60, 80, 100, 200],
|
|
toolbar: '#headerToolBar',
|
|
request: {
|
|
pageName: 'page',
|
|
limitName: 'rows'
|
|
},
|
|
cols: [
|
|
[
|
|
{type:'checkbox', fixed: 'left'},
|
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
|
{field: 'residentialName', width: 180, title: '小区名称', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'buildingName', width: 180, title: '楼宇编号/名称', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'houseNumber', width: 180, title: '房屋编号(名称)', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'houseStatus', width: 180, title: '房屋状态', align:'center',
|
|
templet: function(row) {
|
|
var rowData = row[this.field];
|
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
|
return '-';
|
|
}
|
|
return rowData;
|
|
}
|
|
},
|
|
{field: 'houseStatus', fixed: 'right', width: 150, title: '租房记录', align:'center',
|
|
templet: function(row) {
|
|
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="rentalHis">租住记录</a>';
|
|
return rowData;
|
|
}
|
|
}
|
|
]
|
|
],
|
|
page: true,
|
|
parseData: function(data) {
|
|
return {
|
|
'code': 0,
|
|
'msg': '',
|
|
'count': data.total,
|
|
'data': data.rows
|
|
};
|
|
}
|
|
});
|
|
}
|
|
// 重载表格
|
|
function reloadTable(currentPage) {
|
|
table.reload('dataTable', {
|
|
url: top.restAjax.path(tableUrl, [buildingId]),
|
|
where: {
|
|
keywords: $('#keywords').val(),
|
|
startTime: $('#startTime').val(),
|
|
endTime: $('#endTime').val(),
|
|
areaParentId : areaParentId[areaParentId.length -1],
|
|
areaCode : areaCode
|
|
},
|
|
page: {
|
|
curr: currentPage
|
|
},
|
|
height: $win.height() - 90,
|
|
});
|
|
}
|
|
// 初始化日期
|
|
function initDate() {
|
|
// 日期选择
|
|
laydate.render({
|
|
elem: '#startTime',
|
|
format: 'yyyy-MM-dd'
|
|
});
|
|
laydate.render({
|
|
elem: '#endTime',
|
|
format: 'yyyy-MM-dd'
|
|
});
|
|
}
|
|
|
|
// 事件 - 页面变化
|
|
$win.on('resize', function() {
|
|
clearTimeout(resizeTimeout);
|
|
resizeTimeout = setTimeout(function() {
|
|
reloadTable();
|
|
}, 500);
|
|
});
|
|
|
|
// 事件 - 搜索
|
|
$(document).on('click', '#search', function() {
|
|
reloadTable(1);
|
|
});
|
|
|
|
// 事件 - 增删改
|
|
table.on('toolbar(dataTable)', function(obj) {
|
|
var layEvent = obj.event;
|
|
var checkStatus = table.checkStatus('dataTable');
|
|
var checkDatas = checkStatus.data;
|
|
if(layEvent === 'updateEvent') {
|
|
if(checkDatas.length === 0) {
|
|
top.dialog.msg(top.dataMessage.table.selectEdit);
|
|
} else if(checkDatas.length > 1) {
|
|
top.dialog.msg(top.dataMessage.table.selectOneEdit);
|
|
} else {
|
|
layer.open({
|
|
type: 2,
|
|
title: false,
|
|
closeBtn: 0,
|
|
area: ['100%', '100%'],
|
|
shadeClose: true,
|
|
anim: 2,
|
|
content: top.restAjax.path('route/buildinghouse/update?buildingHouseId={buildingHouseId}', [checkDatas[0].buildingHouseId]),
|
|
end: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
//监听行单击事件
|
|
table.on('tool(dataTable)', function(obj){
|
|
var data = obj.data;
|
|
if('rentalHis' == obj.event) {
|
|
rentalHis(data);
|
|
}else if('addUser' == obj.event) {
|
|
console.log(data)
|
|
addUser(data);
|
|
}
|
|
});
|
|
|
|
// 房屋租住记录
|
|
function rentalHis(data) {
|
|
top.dialog.open({
|
|
url: top.restAjax.path('route/houseuser/list?buildingHouseId={buildingHouseId}', [data.buildingHouseId]),
|
|
title: "房屋租住记录",
|
|
width: '80%',
|
|
height: '80%',
|
|
onClose: function() {
|
|
reloadTable();
|
|
}
|
|
});
|
|
}
|
|
|
|
// 绑定人员信息
|
|
function addUser(data) {
|
|
addComment(data);
|
|
}
|
|
|
|
function addComment(data){
|
|
//给模板 tpl-user 传递参数
|
|
var tpldata = {
|
|
"buildingHouseId": data.buildingHouseId
|
|
};
|
|
//获取id为tpl-user的noscript标签的html内容,不能使用innerHtml
|
|
laytpl(document.getElementById('tpl-user').innerText)
|
|
.render(tpldata,function(html){
|
|
//渲染完成后直接打开
|
|
layer.open({
|
|
type: 1,
|
|
shade: false,
|
|
area: ['80%', '50%'],
|
|
title: false, //不显示标题
|
|
content: html,
|
|
});
|
|
});
|
|
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |