| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 | <%@ taglib prefix="shiro" uri="http://shiro.apache.org/tags"%><%@ page language="java" contentType="text/html; charset=UTF-8"	pageEncoding="UTF-8"%><%@ page isELIgnored="false"%><%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%@ 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><head>	<meta charset="utf-8">    <meta http-equiv="content-type" content="text/html;charset=utf-8">    <meta name="viewport"          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">    <meta http-equiv="X-UA-Compatible" content="ie=edge">	<title>项目基本信息</title>	<style>		h1 {			text-align: center;		}		.infoBox {			width: 160mm;			margin: 0 auto;			margin-top: 20px;			height: 297mm;		}		.page {			/* A4高度是297mm */			height: 357mm;		}		table {            border-collapse: collapse;			/*A4宽度是210mm*/            width: 160mm;            margin: 0 auto;        }		td,th {            border: black solid 1px;            padding: 5px;            font-size: 14px;            word-break:break-all;			width: 50px;        }	</style></head><body>	<div class="page">		<h1>${subName}</h1>	</div>	<div class="infoBox">		<table>			<tbody>				<tr>					<td>项目代码:</td>					<td>${subCode}</td>					<td>项目名称:</td>					<td>${subName}</td>				</tr>				<tr>					<td>建设性质:</td>					<td>${propKind}</td>					<td>所属行业:</td>					<td>${indusKind}</td>				</tr>				<tr>					<td>总投资金额(万元):</td>					<td>${amtTotal}</td>					<td>到位资金(万元):</td>					<td>${amtComptotal}</td>				</tr>				<tr>					<td>投资类型:</td>					<td>${kindNature}</td>					<td></td>					<td></td>				</tr>				<tr>					<td>建设地点:</td>					<td colspan="4">${subjectId}</td>				</tr>				<tr>					<td colspan="4">					<table>						<tbody>							<tr>								<td class="label" rowspan="${rowNum }">资金来源</td>								<c:if test="${rowNum == 1 }">								<td colspan="3"></td>								</c:if>							</tr>							<c:forEach items="${subSource}" var="source">							<tr>								<td class="label">${source.sourceName }</td>								<td colspan="2">${source.amt }万元</td>							</tr>							</c:forEach>						</tbody>					</table>					</td>				</tr>				<tr>					<td>建设内容及规模:</td>					<td colspan="3">${content}</td>				</tr>				<tr>					<td>计划开工时间:</td>					<td>${beginDate}</td>					<td>计划竣工时间:</td>					<td>${endDate}</td>				</tr>				<tr>					<td>平台联系人:</td>					<td>${nameZrr}</td>					<td>平台联系人电话:</td>					<td>${tel}</td>				</tr>				<tr>					<td>项目总负责人:</td>					<td>${nameLead}</td>					<td>总负责人联系电话:</td>					<td>${telLead}</td>				</tr>				<tr>					<td>责任主体:</td>					<td colspan="3">${mainId}</td>				</tr>				<tr>					<td>备注:</td>					<td colspan="3">${remark}</td>				</tr>			</tbody>		</table>	</div></body></html>
 |