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

📄 linkmanlist.jsp

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>

<html>
  <head>

    
    <title>My JSP 'clientList.jsp' starting page</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>
  
  <body class="bodycolor" topmargin="5">

<table class="title1">
  <tr>
    <td class="Big"><img src="${ctx }/images/notify_new.gif" align="absmiddle"><span class="big3"> 联系人信息</span><br>
    </td>
    </tr>
</table>
<br>
  
  <body class="bodycolor" topmargin="5" >
<div align="left">
<fieldset style="width:95%;padding-bottom:5px;">
	 <legend class="small" align=left>
      <b> 查 询 </b>
  </legend>
<html:form action="linkMan.do" method="post">
<table cellspacing="1" class="small" align="left" cellpadding="3">

  <tr>
    <td nowrap class="TableData">&nbsp;&nbsp;客户名称: </td>
    <td nowrap class="TableData">
        <input type="text" name="CUSTOMER_NAME"  size="20" maxlength="100">
    </td>
   <td nowrap class="TableData">客户编码: </td>
    <td nowrap class="TableData">
        <input type="text" name="CUSTOMER_CODE"  size="20" maxlength="100">
    </td>
	<td nowrap class="TableData">性别: </td>
    <td nowrap class="TableData">
        <select name="sex" class="SmallSelect">
          <option value="" >---请选择---</option>
          <option value="0" >男</option>
          <option value="1" >女</option>
        </select>
    </td>
   </tr>

    <tr>
    <td nowrap class="TableData">&nbsp;&nbsp;联系人姓名: </td>
    <td nowrap class="TableData">
       <html:text property="linkManName" ></html:text>
    </td>
    <td nowrap class="TableData">地址: </td>
    <td nowrap class="TableData">
        <html:text property="address" ></html:text>
    </td>
    
   </tr>
    <tr>
    <td nowrap class="TableData" colspan="2">
        &nbsp;&nbsp;<input value="快速查询" type="submit" class="SmallButton" title="模糊查询" name="button">
   		<input value="添加联系人" type="button" class="SmallButton" title="联系人资料导入" name="button1" onClick="location.href='linkMan.do?p=edit'">
    </td>
   </tr>

</table>
</html:form>
</fieldset>
</div>

<br>

<!-- 如果没有数据显示 提示 -->
<c:if test="${empty linkMen}">
	<%@ include file="/utility/noData.jsp" %>
</c:if>
<c:if test="${! empty sorry }">
<table align="center">
<tr><td align="center"><font style="color:#CC3300; font-size:18px">${sorry }</font></td></tr>
</table>
</c:if>
<%@ include file="/commons/messages.jsp"%>


<!-- 显示数据信息 -->

<c:if test="${!empty linkMen}">
<table     class="tablestyle1">

 <tr class="TableHeader">
      <td nowrap align="center" width="5%">选择</td>
      <td nowrap align="center" width="12%">联系人姓名</td>
      <td nowrap align="center" width="5%">性别</td>
      <td nowrap align="center" width="20%">地址</td>
      <td nowrap align="center" width="11%">固定电话</td>
      <td nowrap align="center" width="12%">手机</td>
      <td nowrap align="center" width="15%">电子邮件</td>
      <td nowrap align="center" width="20%">操作</td>
  </tr>
  <c:forEach items="${linkMen}" var="item">
  <tr class="TableLine1">
	<td>&nbsp;<input type="checkbox" name="email_select" value="1" onClick="check_one(self);"></td>
      <td nowrap align="center">${item.linkManName}</td>
      <td nowrap align="center">${item.sex }</td>
      <td nowrap align="center">${item.address }</td>
      <td nowrap align="center">${item.telephone }</td>
      <td nowrap align="center">${item.mobilephone }<a href="/function/mbsms?TO_ID1="></a></td>
      <td nowrap align="center">${item.email }</td>
      <td nowrap align="center">
        <a href="${ctx }/linkMan.do?p=info&&id=${item.id }">详细信息</a>&nbsp;|&nbsp;
        <a href="${ctx }/linkMan.do?p=edit&&id=${item.id }">编辑</a>&nbsp;|&nbsp;
        <a href="${ctx }/linkMan.do?p=delete&&id=${item.id }" onClick="{if(confirm('确定要删除该联系人吗?')){return true;}return false;}">删除</a>
      </td>
    </tr>
   </c:forEach>
 <tr class="TableControl">
 <td colspan="9">
 	   &nbsp;<input type="checkbox" name="allbox" id="allbox_for" onClick="check_all();">
      <label for="allbox_for">全选</label> &nbsp;
      <input type="button"  value="批量删除" class="SmallButton" onClick="delete_mail();" title="删除所选联系人"> &nbsp;
 </td>
</tr>
<tr>
 	<pager:pager value="pager" url="linkMan.do" pagerStr="pagerstruts"/>
</tr>
</table>
</c:if>
  </body>
</html>

⌨️ 快捷键说明

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