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

📄 clientinfo.jsp

📁 自己制作的联通CRM,支持客户分类,管理,升级,积分管理等等..
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%> 
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
	<meta http-equiv="pragma" content="no-cache" />
	<meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
	<meta http-equiv="expires" content="Wed, 26 Feb 1970 08:21:57 GMT" />
	<link href="${pageContext.request.contextPath}/image/main.css" rel="stylesheet" type="text/css">
	<title>样式</title>
</head> 
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" valign="middle"><table width="80%" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td height="20" align="center" valign="middle"><strong>用户详细信息</strong></td>
      </tr>
    </table>
      <table width="49%" height="283" border="1" cellpadding="0" cellspacing="0" bordercolor="#D71920">
        <tr>
          <td align="center" valign="middle"><table width="100%" height="387" border="1" cellpadding="0" cellspacing="0" id="ttc">
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">用户手机号码:</td>
              <td width="60%" align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.phone}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">用户姓名:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.username}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">证件类型:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.papertype}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">证件号码:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.paperid}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">服务类型:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.servetype}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">地区:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.area}</td>
            </tr>
            <tr>
              <td width="30%" height="20" align="right" id="ttc">县市:</td>
              <td align="left" valign="middle" id="ttc">&nbsp;${requestScope.user.city}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">主套餐:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.mainoption}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">开户时间:</td>
              <td align="left" valign="middle" nowrap id="ttc">&nbsp;${requestScope.user.regtime}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">是否集团客户:</td>
              <c:if test="${requestScope.user.isgroupclient==1}">
                <td align="left" valign="middle" nowrap id="ttc">&nbsp;是</td>
              </c:if>
              <c:if test="${requestScope.user.isgroupclient==0}">
                <td width="10%" align="center" valign="middle" nowrap id="ttc">&nbsp;否</td>
              </c:if>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">是否是会员:</td>
              <c:if test="${requestScope.user.ismember==1}">
                <td align="left" valign="middle" nowrap id="ttc">&nbsp;是</td>
              </c:if>
              <c:if test="${requestScope.user.ismember==0}">
                <td align="center" valign="middle" nowrap id="ttc">&nbsp;否</td>
              </c:if>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">所属客户经理:</td>
              <td align="left" valign="middle" id="ttc">&nbsp;${requestScope.systembean.username}</td>
            </tr>
            <tr>
              <td height="20" align="right" valign="middle" nowrap id="ttc">是否冻结:</td>
              <c:if test="${requestScope.user.islock==1}">
                <td align="left" valign="middle" nowrap id="ttc">&nbsp;是</td>
              </c:if>
              <c:if test="${requestScope.user.islock==0}">
                <td align="center" valign="middle" nowrap id="ttc">&nbsp;否</td>
              </c:if>
            </tr>
          </table></td>
        </tr>
      </table></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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