⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 messagelist.jsp

📁 JAVA实现的中小型企业CRM客户关系管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!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>
<base href="<%=basePath %>"/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>所有短信列表</title>
<link href="<%=basePath %>skin/default/default.css" rel="stylesheet" type="text/css" />
<script src="<%=basePath %>js/util.js" language="javascript" type="text/javascript"></script>
</head>

<body class="mainbody">
<table width="100%" border="0" cellspacing="2" cellpadding="0">
  <tr>
    <td class="tdgriud">首页&nbsp;&gt;&gt;&nbsp;短信管理&nbsp;&gt;&gt;&nbsp;短信列表</td>
  </tr>
</table>
<fieldset>
	<table width="100%" border="0" cellspacing="0" cellpadding="0" class="querytable">
	<html:form action="/manage/query.do">
	<html:hidden property="task" value="list"/>
	<html:hidden property="sqlname" value="Query.messagelist"/>
	<html:hidden property="forward" value="messagelist"/>

		<tr>
			<td align="right">客户姓名:</td>
			<td><html:text property="cust_name"/></td>
			<td align="right">发送号码:</td>
			<td><html:text property="telephone"/></td>
		</tr>
		<tr>
			<td align="right">客服人员:</td>
			<td><html:text property="employee_name"/></td>
			<td align="right">已经发送:</td>
			<td>
				<html:select property="params_1">
					<html:option value="">全部</html:option>
					<html:option value="0">发送失败</html:option>
					<html:option value="1">发送成功</html:option>
				</html:select>
			
			</td>
		</tr>	
  <tr>
    <td class="tdlbg">开始日期:</td>
    <td class="tdrbg"><html:text property="start_date"></html:text>
    <a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.all.item('start_date'));return false;">
 	<html:img align="absmiddle" page="/include/calendar/calbtn.gif" width="34" height="22" border="0" alt=""/>
 	</a></td>
    <td class="tdlbg">结束日期:</td>
    <td class="tdrbg"><html:text property="end_date"></html:text>
    <a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.all.item('end_date'));return false;">
 	<html:img align="absmiddle" page="/include/calendar/calbtn.gif" width="34" height="22" border="0" alt=""/>
 	</a></td>
  </tr>
			
		<tr>
			<td colspan="4" align="center"><input type="submit" name="Submit" class="btn_save" value="查 询" /></td>
		</tr>
	</html:form>
	</table>
</fieldset>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tdborder">
  <tr>
    <td width="8%" class="tdtitle">编号</td>
    <td width="9%" class="tdtitle">客服人员</td>
    <td width="9%" class="tdtitle">客户姓名</td>
    <td width="30%" class="tdtitle">短信内容</td>
    <td width="9%" class="tdtitle">电话号码</td>
    <td width="6%" class="tdtitle">状态</td>
    <td width="16%" class="tdtitle">发送时间</td>
  </tr>
  <logic:notEmpty name="list"> 
  <logic:iterate id="message" name="list" indexId="index">
  <tr  onmouseover="TdMouseOver(this);" onmouseout="TdMouseOver(this);">
    <td class="tdbg"><bean:write name="message" property="message_id" /></td>
    <td class="tdbg"><bean:write name="message" property="employee_name" /></td>
    <td class="tdbg"><bean:write name="message" property="cust_name" /></td>
    <td class="tdbg"><bean:write name="message" property="message" /></td>
    <td class="tdbg"><bean:write name="message" property="phone" /></td>
    <td class="tdbg">
    <logic:equal name="message" property="issend" value="0">
    	发送失败
    </logic:equal>
    <logic:equal name="message" property="issend" value="1">
    	发送成功
    </logic:equal>
    </td>
    <td class="tdbg"><bean:write name="message" property="create_date" /></td>
  </tr>
  </logic:iterate> 
  </logic:notEmpty>  
</table>
<logic:present name="pagetool">  
    <bean:write name="pagetool" filter="false"/>
   </logic:present>
<iframe width="174" height="189" name="gToday:normal:agenda.js" id="gToday:normal:agenda.js" src="<%=path%>/include/calendar/ipopeng.htm" scrolling="no" frameborder="0" style="visibility:visible; z-index:999; position:absolute; top:-500px; left:-500px;">
</iframe>   
</body>
</html>

⌨️ 快捷键说明

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