12345678910111213141516171819202122232425262728293031323334353637 |
- <%var cssParam = {%>
- <%};%>
- <%var jsParam = {%>
- <script type="text/javascript">
- </script>
- <%};%>
- <%layout("/TechnicalRequirementsGuide/commonPage/_layout.html", {jsParam:jsParam,cssParam:cssParam}) {%>
- <div class="col-xs-12">
- <div style="margin-top:22px; text-align:center; height:66px">
- <label><h7 style=" font-family:Italics; font-size:200%;"> ${technicalRequirementsGuide.name} </h7></label>
- </div>
- <div style="margin:0 auto; height:45px; text-align:center;">
- 发布联盟: ${technicalRequirementsGuide.allianceName}
- 发布日期: ${technicalRequirementsGuide.createDate}
- 截止日期:${technicalRequirementsGuide.endDate}
- </div>
- <%if(technicalRequirementsGuide.attachment!'' != ''){%>
- <div style=" margin:0 auto; margin-left:780px; width:1000px; height:20px">
- <label class="col-sm-3 no-padding-right" style="text-align: right;"> 附件: </label>
- <label class="col-sm-9 no-padding-right" style="text-align: left;"><a href="${contextPath}/imageFile/downloadFileNoUser?filePath=${technicalRequirementsGuide.attachment}" target="_blank"> 下载附件 </a></label>
- </div>
- <%}%>
- <div style="margin:0 auto; width:900px; border:1px solid #000000">
- <div style="margin:0 auto; width:850px">
- ${technicalRequirementsGuide.explains}
- </div>
- </div>
- <!-- /span -->
- </div>
- <!-- /row -->
- <%}%>
|