260 lines
10 KiB
HTML
260 lines
10 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">
|
||
|
<div class="layui-col-md12">
|
||
|
<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', 'laydate', 'common'], function() {
|
||
|
var $ = layui.$;
|
||
|
var $win = $(window);
|
||
|
var table = layui.table;
|
||
|
var admin = layui.admin;
|
||
|
var laydate = layui.laydate;
|
||
|
var common = layui.common;
|
||
|
var resizeTimeout = null;
|
||
|
var tableUrl = 'api/buildinghouse/listpage';
|
||
|
|
||
|
// 初始化表格
|
||
|
function initTable() {
|
||
|
table.render({
|
||
|
elem: '#dataTable',
|
||
|
id: 'dataTable',
|
||
|
url: top.restAjax.path(tableUrl, []),
|
||
|
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, []),
|
||
|
where: {
|
||
|
keywords: $('#keywords').val(),
|
||
|
startTime: $('#startTime').val(),
|
||
|
endTime: $('#endTime').val()
|
||
|
},
|
||
|
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'
|
||
|
});
|
||
|
}
|
||
|
|
||
|
initTable();
|
||
|
initDate();
|
||
|
|
||
|
// 事件 - 页面变化
|
||
|
$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>
|