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.

158 lines
9.4 KiB

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" isELIgnored="false" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
<title>缴费记录详情</title>
<link rel="icon" href="${ pageContext.request.contextPath}/assets/images/favicon.ico" type="image/ico">
<link href="${ pageContext.request.contextPath}/assets/css/bootstrap.min.css" rel="stylesheet">
<link href="${ pageContext.request.contextPath}/assets/css/materialdesignicons.min.css" rel="stylesheet">
<link href="${ pageContext.request.contextPath}/assets/css/style.min.css" rel="stylesheet">
<script type="text/javascript" src="${ pageContext.request.contextPath}/assets/js/jquery.min.js"></script>
<%-- 全局主题配置--%>
<script type="text/javascript" src="${ pageContext.request.contextPath}/assets/theme.js"></script>
<link href="${pageContext.request.contextPath}/assets/codeying.css" rel="stylesheet">
</head>
<body data-theme="default">
<div class="lyear-layout-web">
<div class="lyear-layout-container">
<!-- 页面头部 -->
<jsp:include page="../header.jsp"></jsp:include>
<!-- 导航侧栏 -->
<jsp:include page="../sidebar.jsp"></jsp:include>
<!--页面主要内容-->
<main class="lyear-layout-content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-header"><h4 style="width:100%;text-align: center;font-weight: 800">缴费记录详情页</h4></div>
<div class="card-body">
<form class="form-horizontal" >
<div class="form-group">
<label class="col-xs-12" >账户</label>
<div class="col-xs-12">
<div class="table-responsive">
<c:if test="${ item.zhanghFrn !=null}">
<table class="table">
<thead>
<tr>
<th>用户名</th>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
<th>联系方式</th>
<th>地址</th>
</tr>
</thead>
<tbody>
<tr>
<td>${ item.zhanghFrn.username }</td>
<td>${ item.zhanghFrn.name }</td>
<td>${ item.zhanghFrn.gender }</td>
<td>${ item.zhanghFrn.age }</td>
<td>${ item.zhanghFrn.tele }</td>
<td>${ item.zhanghFrn.place }</td>
</tr>
</tbody>
</table>
</c:if>
</div>
</div>
</div>
<div class="form-group">
<label class="col-xs-12" >年月</label>
<div class="col-xs-12">
<input readonly class="form-control w200" type="text" name="niany" value="${ item.niany }">
</div>
</div>
<div class="form-group">
<label class="col-xs-12" >应付金额</label>
<div class="col-xs-12">
<input readonly class="form-control w200" type="text" name="yingfje" value="${ item.yingfje }">
</div>
</div>
<div class="form-group">
<label class="col-xs-12" >实付金额</label>
<div class="col-xs-12">
<input readonly class="form-control w200" type="text" name="shifje" value="${ item.shifje }">
</div>
</div>
<div class="form-group">
<label class="col-xs-12" >缴费日期</label>
<div class="col-xs-12">
<input readonly class="form-control w200" type="text" name="createtime" value="<fmt:formatDate value='${ item.createtime }' pattern='yyyy-MM-dd HH:mm:ss'/>">
</div>
</div>
<div class="form-group">
<label class="col-xs-12" >员工</label>
<div class="col-xs-12">
<div class="table-responsive">
<c:if test="${ item.yuangFrn !=null}">
<table class="table">
<thead>
<tr>
<th>用户名</th>
<th>姓名</th>
<th>性别</th>
<th>工号</th>
<th>电话</th>
<th>身份证</th>
<th>年龄</th>
<th>职位</th>
<th>学历</th>
<th>部门</th>
</tr>
</thead>
<tbody>
<tr>
<td>${ item.yuangFrn.username }</td>
<td>${ item.yuangFrn.name }</td>
<td>${ item.yuangFrn.gender }</td>
<td>${ item.yuangFrn.numb }</td>
<td>${ item.yuangFrn.tele }</td>
<td>${ item.yuangFrn.idnum }</td>
<td>${ item.yuangFrn.age }</td>
<td>${ item.yuangFrn.empposition }</td>
<td>${ item.yuangFrn.xuel }</td>
<td>${ item.yuangFrn.deptid }</td>
</tr>
</tbody>
</table>
</c:if>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</main>
<!--End 页面主要内容-->
</div>
</div>
<script type="text/javascript" src="${ pageContext.request.contextPath}/assets/js/bootstrap.min.js"></script>
<script type="text/javascript" src="${ pageContext.request.contextPath}/assets/js/perfect-scrollbar.min.js"></script>
<script type="text/javascript" src="${ pageContext.request.contextPath}/assets/js/main.min.js"></script>
</body>
</html>