noticelist.jsp
来自「移动彩信管理平台」· JSP 代码 · 共 91 行
JSP
91 行
<%@ page contentType="text/html;charset=utf-8"%>
<%@ include file="../common/taglibs.jsp" %>
<html>
<head>
<link href="${webctx}/css/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<table width="98%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><table border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td width="8" align="left"><img src="${webctx}/images/pny_01.jpg" width="8" height="25" /></td>
<td width="80" align="center" background="${webctx}/images/pny_bg.gif" class="psize3">查看公告</td>
<td width="8" align="right"><img src="${webctx}/images/pny_02.jpg" width="8" height="25" /></td>
</tr>
</table></td>
</tr>
</table>
<table width="98%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td align="center" valign="top" bgcolor="#FFFFFF"><table width="99%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">主题</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">发布时间</td>
<td align="center" bgcolor="#A6D5D9" class="psize4">公告操作</td>
</tr>
<s:if test="${!empty noticeList}">
<s:iterator value="noticeList" status="status">
<tr>
<td <s:if test="#status.even==true">bgcolor="#CEE8EA"</s:if><s:else>bgcolor="#F3F3F3"</s:else> height="20" align="center">
<a href="${webctx}/look.do?noticeId=<s:property value="noticeId"/>">
<s:property value="noticeTitle"/></a>
</td>
<td <s:if test="#status.even==true">bgcolor="#CEE8EA"</s:if><s:else>bgcolor="#F3F3F3"</s:else> align="center">
<s:date name="createTime" format="yyyy-MM-dd"/>
</td>
<td <s:if test="#status.even==true">bgcolor="#CEE8EA"</s:if><s:else>bgcolor="#F3F3F3"</s:else> align="center">
<a href="${webctx}/deleteNotice.do?noticeId=<s:property value="noticeId"/>" onclick="return confirm('确定删除吗?')">删除</a>
</td>
</tr>
</s:iterator >
</table>
<table width="99%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<table width="99%" border="0" cellspacing="1" cellpadding="1" style="border:1px solid #5C92B7;">
<tr>
<td height="18" colspan="8" align="right" bgcolor="#A6D5D9">
<s:property value="href" escape="false"/>
</td>
</tr>
</table>
</s:if>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?