mmscheck.jsp
来自「移动彩信管理平台」· JSP 代码 · 共 124 行
JSP
124 行
<%@ page contentType="text/html;charset=utf-8" %>
<%@ include file="../common/taglibs.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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" />
<SCRIPT language="javaScript" SRC="${webctx}/js/fcnclander.js"></SCRIPT>
<script language="javaScript" src="${webctx}/js/validate.js"></script>
<script language="javaScript">
function check(){
//栏目验证
if(form.typeChoose.value=="0"){
alert("请选择查询栏目!");
form.typeChoose.focus();
return false;
}
return true;
}
</script>
</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="100" 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 height="20" align="center" bgcolor="#FFFFFF">
<table width="99%" border="0" cellspacing="1" cellpadding="4" >
<!-- 查询区域开始 -->
<form method="post" name="form" action="<s:property value="#webctx"/>/selectUpload.do" onsubmit="return check();">
<tr>
<td height="20" align="right" bgcolor="#FFFFFF">栏目:</td>
<td height="20" align="left" bgcolor="#FFFFFF">
<select name="typeChoose" style="WIDTH: 105px">
<option value="0" selected="selected">请选择</option>
<s:iterator value="mmsTypeList">
<option value="<s:property value="sortIndex"/>"><s:property value="sortName"/></option>
</s:iterator>
</select>
<span class="psize5">*</span>
</td>
<td height="20" align="right" bgcolor="#FFFFFF">下发时间:</td>
<td height="20" align="left" bgcolor="#FFFFFF">
<input type="text" name="startDate" CLASS="txtInp" readonly="true" size="10" maxlength="10"/>
<input class="sBtn" type="button" name="selectStartDate" size="20" value="选择日期" onclick="fPopCalendar(startDate,startDate)" style="cursor:hand"/>
至
<input type="text" name="endDate" CLASS="txtInp" readonly="true" size="10" maxlength="10"/>
<input class="sBtn" type="button" name="selectStartDate" size="20" value="选择日期" onclick="fPopCalendar(endDate,endDate)" style="cursor:hand"/>
</td>
<td height="20" align="right" bgcolor="#FFFFFF"> </td>
<td height="20" align="left" bgcolor="#FFFFFF"><input name="Submit3" type="submit" class="pal" value="确定" />
<input name="Submit4" type="reset" class="pal" value="重置" /></td>
</tr>
</form>
<!-- 查询区域结束 -->
</table>
<table width="99%" border="0" cellspacing="1" cellpadding="4" style="border:1px solid #5C92B7;">
<tr>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">上传ID</td>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">彩信栏目</td>
<!-- <td height="20" align="center" bgcolor="#A6D5D9" class="psize4">用途</td>-->
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">CP</td>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">彩信标题</td>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">发送时间</td>
<td height="20" align="center" bgcolor="#A6D5D9" class="psize4">操作</td>
</tr>
<s:iterator value="upMmsList">
<tr>
<td height="20" align="center" bgcolor="#F2FAFD"><s:property value="uplodId"/></td>
<td height="20" align="center" bgcolor="#F2FAFD"><s:property value="typeIndex"/></td>
<!-- <td height="20" align="center" bgcolor="#F2FAFD"></td> -->
<td height="20" align="center" bgcolor="#F2FAFD"><s:property value="provideId"/></td>
<td height="20" align="center" bgcolor="#F2FAFD"><s:property value="mmsTitle"/></td>
<td height="20" align="center" bgcolor="#F2FAFD"><s:date name="groupSendTime" format="yyyy-MM-dd"/></td>
<td height="20" align="center" bgcolor="#F2FAFD"><p>【<a href="#">通过</a>】【<a href="#" class="ap2">驳回</a><a href="#"></a>】【<a href="#">查看</a><a href="#" class="ap2"></a>】</p></td>
</tr>
</s:iterator>
<tr>
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
<!-- <td height="20" align="center" bgcolor="#CEE8EA"> </td> -->
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
<td height="20" align="center" bgcolor="#CEE8EA"> </td>
</tr>
</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>
<table width="99%" border="0" cellspacing="1" cellpadding="1">
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?