|
|
|
|
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
|
|
|
<%@ taglib uri="/struts-tags" prefix="s"%>
|
|
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
|
|
|
<%
|
|
|
|
|
String path = request.getContextPath();
|
|
|
|
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
|
|
|
|
%>
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title>公共租赁住房租赁管理系统</title>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
|
|
|
|
|
|
<!-- App favicon -->
|
|
|
|
|
<link rel="shortcut icon" href="<%=basePath %>static/assets/images/favicon.ico">
|
|
|
|
|
|
|
|
|
|
<!-- plugins -->
|
|
|
|
|
<link href="<%=basePath %>static/assets/libs/flatpickr/flatpickr.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
|
|
|
|
<!-- App css -->
|
|
|
|
|
<link href="<%=basePath %>static/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
<link href="<%=basePath %>static/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
<link href="<%=basePath %>static/assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<body class="container_12">
|
|
|
|
|
<form class="form-inline" role="form"
|
|
|
|
|
action="<%=basePath%>admin/house/list.do" method="post"
|
|
|
|
|
autocomplete="off">
|
|
|
|
|
<input type="hidden" name="communityId" value="${param.communityId}"/>
|
|
|
|
|
<div class="form-group" style="margin-right: 10px">
|
|
|
|
|
<label >户型:</label> <input class="form-control"
|
|
|
|
|
name="cate" type="text" placeholder="根据户型搜索">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group" style="margin-right: 10px">
|
|
|
|
|
<button type="submit" class="btn btn-primary">查询</button>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
<div class="box round first" style="margin:15px;">
|
|
|
|
|
|
|
|
|
|
<h2>数据列表</h2>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="block">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div>
|
|
|
|
|
<a class="btn btn-primary" href="<%=basePath%>admin/house/add.do?communityId=${param.communityId}">新增房源</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<table id="example" class="data display datatable">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>户型</th>
|
|
|
|
|
<th>面积</th>
|
|
|
|
|
<th>单价</th>
|
|
|
|
|
<th>图片</th>
|
|
|
|
|
<th>余量/总量</th>
|
|
|
|
|
<th style="width: 150px;">操作</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
|
|
<c:forEach items="${list}" var="item">
|
|
|
|
|
|
|
|
|
|
<tr class="even gradeA">
|
|
|
|
|
<td class="align-middle">${item.cate}</td>
|
|
|
|
|
<td class="align-middle">${item.size}</td>
|
|
|
|
|
<td class="align-middle">${item.price}</td>
|
|
|
|
|
<td class="align-middle"><img style="width: 100px;height: 100px" src="<%=basePath%>${item.thunb}"/></td>
|
|
|
|
|
|
|
|
|
|
<td class="align-middle">${item.remain}/${item.total}</td>
|
|
|
|
|
<td class="align-middle">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a href="<%=basePath%>admin/house/edit.do?id=${item.id}&communityId=${param.communityId}">
|
|
|
|
|
<i class="icon-pencil"></i>
|
|
|
|
|
编辑
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<a class="deletemodal" href="<%=basePath%>admin/house/delete.do?id=${item.id}&communityId=${param.communityId}"><i class="icon-remove"></i>
|
|
|
|
|
移除
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
</c:forEach>
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
<!-- Vendor js -->
|
|
|
|
|
<script src="<%=basePath %>static/assets/js/vendor.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- optional plugins -->
|
|
|
|
|
<script src="<%=basePath %>static/assets/libs/moment/moment.min.js"></script>
|
|
|
|
|
<script src="<%=basePath %>static/assets/libs/apexcharts/apexcharts.min.js"></script>
|
|
|
|
|
<script src="<%=basePath %>static/assets/libs/flatpickr/flatpickr.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- page js -->
|
|
|
|
|
<script src="<%=basePath %>static/assets/js/pages/dashboard.init.js"></script>
|
|
|
|
|
|
|
|
|
|
<!-- App js -->
|
|
|
|
|
<script src="<%=basePath %>static/assets/js/app.min.js"></script>
|
|
|
|
|
<script src="<%=basePath %>static/js.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
loadRegion("province",1);
|
|
|
|
|
loadRegion("city",${sessionScope.users.pid});
|
|
|
|
|
loadRegion("area",${sessionScope.users.cid});
|
|
|
|
|
$("#province,#city,#area").change(function(){
|
|
|
|
|
sel = $(this).next("select").attr("id");
|
|
|
|
|
loadRegion(sel,$(this).val());
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
function loadRegion(sel,parentId)
|
|
|
|
|
{
|
|
|
|
|
//sel=="city"?$("#area").html(""):false
|
|
|
|
|
$("#"+sel).html("");
|
|
|
|
|
$.get("<%=basePath%>rg.sl?id="+parentId,function(e){
|
|
|
|
|
$("#"+sel).html(e);
|
|
|
|
|
sel=="city"?reload():false;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
function reload()
|
|
|
|
|
{
|
|
|
|
|
sel = "area";
|
|
|
|
|
loadRegion(sel,$("#city").val());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<link href="<%=basePath %>static/toastr-master/toastr.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
<script src="<%=basePath %>static/toastr-master/toastr.min.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
<c:if test="${!empty stateType }">
|
|
|
|
|
toastr.${stateType}('${message}', '提示');
|
|
|
|
|
</c:if>
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
</html>
|