looknotice.jsp

来自「移动彩信管理平台」· JSP 代码 · 共 105 行

JSP
105
字号

<%@ page contentType="text/html;charset=utf-8"%>
<%@ include file="../common/taglibs.jsp" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>内容页</title>
<link href="${webctx}/css/style.css" rel="stylesheet" type="text/css"/>
</head>

<body>
<table width="98%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
  <tr>
    <td height="20" align="center" bgcolor="#FFFFFF">
    <br><s:if test="${!empty notice}">
    <table width="99%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
      <tr>
        <td height="20" colspan="8" align="center" bgcolor="#A6D5D9" class="psize4"> 
        ${notice.noticeTitle}<br></td>
        </tr>
      <tr>
        <td colspan="8" align="center" bgcolor="#F2FAFD">地区:
        <span class="psize6">
        <s:if test="${notice.noticeArea}==0">
           全省
         </s:if>
        <s:if test="${notice.noticeArea}==571">
          杭州
        </s:if>
        <s:if test="${notice.noticeArea}==572">
          湖州
        </s:if>
        <s:if test="${notice.noticeArea}==573">
          嘉兴
        </s:if>
        <s:if test="${notice.noticeArea}==574">
         宁波
        </s:if>
        <s:if test="${notice.noticeArea}==575">
         绍兴
        </s:if>
        <s:if test="${notice.noticeArea}==576">
         台州
        </s:if>
         <s:if test="${notice.noticeArea}==577">
         温州
        </s:if>
         <s:if test="${notice.noticeArea}==578">
         丽水
        </s:if>
        <s:if test="${notice.noticeArea}==579">
         金华
        </s:if>
        <s:if test="${notice.noticeArea}==580">
         舟山
        </s:if>
        <s:if test="${notice.noticeArea}==570">
         衢州
        </s:if>
        
        </span>&nbsp;紧急程度:
        <span class="psize5">
        <s:if test="${notice.noticeLevel}==1">
           一般
         </s:if>
         <s:if test="${notice.noticeLevel}==2">
           紧急
         </s:if>
         <s:if test="${notice.noticeLevel}==3">
           非常紧急
         </s:if>
        </span>&nbsp;
        发布时间:<span class="psize6">
        <s:date name="notice.createTime" format="yyyy-MM-dd"/>
        </span></td>
        </tr>
      <tr>
        <td colspan="8" align="left" bgcolor="#F2FAFD">
        <span class="ysize1">&nbsp;&nbsp;&nbsp;&nbsp;
        ${notice.noticeContent}
        </span></td>
      </tr>
      <tr>
        <td colspan="8" align="center" bgcolor="#F2FAFD">【<a href="javascript:window.history.go(-1)" class="ap2">返回</a>】</td>
      </tr>
      <tr><td>下载附件:</td></tr>
      <s:if test="${!empty fileNames}">
      <s:iterator value="fileNames">
      <tr>
      <td><a href="${webctx}/uploads/<s:property/>"><s:property/></a></td>
      </tr>
      </s:iterator>
      </s:if>
</table>
   </s:if> 
 
</td>
  </tr>
  
</table>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?