You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.9 KiB
104 lines
3.9 KiB
<%@ page language="java" pageEncoding="UTF-8" %>
|
|
<%@ taglib uri="/struts-tags" prefix="s" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<%@ page language="java" %>
|
|
<%@ page language="java" %>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
|
|
|
|
|
|
%>
|
|
|
|
<jsp:include page="header.jsp"></jsp:include>
|
|
|
|
|
|
<!-- Breadcrumb -->
|
|
<div class="breadcrumb-area section"
|
|
style="background: linear-gradient(45deg, rgb(240, 100, 150), rgb(140, 200, 208));">
|
|
<div class="container">
|
|
<div class="breadcrumb pt-75 pb-75 pt-sm-70 pb-sm-40 pt-xs-70 pb-xs-40">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h2>申请公示</h2>
|
|
<!-- breadcrumb-list start -->
|
|
<ul class="breadcrumb-list">
|
|
<li class="breadcrumb-item"><a href="<%=basePath%>">Home</a></li>
|
|
<li class="breadcrumb-item active">公示</li>
|
|
</ul>
|
|
<!-- breadcrumb-list end -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--// Breadcrumb -->
|
|
|
|
<!-- Page Conttent -->
|
|
<main class="page-content section">
|
|
<!-- Blog Grids Area -->
|
|
<div class="blog-grids-area pt-80 pt-md-60 pt-sm-40 pt-xs-30 pb-110 pb-md-90 pb-sm-70 pb-xs-60">
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
<div class="col">
|
|
<ul class="properties-list nav justify-content-end" role="tablist">
|
|
<li><a class="${empty param.type?'active':''}" href="${pageContext.request.contextPath}/app/pub.do">所有</a></li>
|
|
<li><a class="${param.type eq 'type1'?'active':''}" href="${pageContext.request.contextPath}/app/pub.do?type=type1">公租房</a></li>
|
|
<li><a class="${param.type eq 'type2'?'active':''}" href="${pageContext.request.contextPath}/app/pub.do?type=type2">廉租房</a></li>
|
|
<li><a class="${param.type eq 'type3'?'active':''}" href="${pageContext.request.contextPath}/app/pub.do?type=type3">经济适用房</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mt-3">
|
|
|
|
|
|
<table id="example" class="table">
|
|
<thead>
|
|
<tr>
|
|
<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>${RegionMap[item.pid].region_name}-${RegionMap[item.cid].region_name}-${RegionMap[item.aid].region_name}</td>
|
|
<td>${USERS_MAP[item.userid].username}</td>
|
|
<td>${item.name}</td>
|
|
<td>${item.houseType}</td>
|
|
<td>
|
|
<a class="btn" href="<%=basePath%>app/jb.do?id=${item.id}">举报</a>
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
</c:forEach>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!--// Blog Grids Area -->
|
|
</main>
|
|
<!--// Page Conttent -->
|
|
|
|
|
|
<jsp:include page="footer.jsp"></jsp:include>
|
|
|
|
<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>
|
|
$(".bz").click(function () {
|
|
var txt = $(this).attr("txt");
|
|
toastr.success(txt, '提示');
|
|
});
|
|
</script> |