|
@@ -0,0 +1,185 @@
|
|
|
+<%@ taglib prefix="s" uri="/struts-tags" %>
|
|
|
+<%--
|
|
|
+ Created by IntelliJ IDEA.
|
|
|
+ User: Administrator
|
|
|
+ Date: 2022/10/31
|
|
|
+ Time: 9:25
|
|
|
+ To change this template use File | Settings | File Templates.
|
|
|
+--%>
|
|
|
+<%@ page import="com.thinkgem.jeesite.common.config.Global" %>
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
+<%@ include file="/WEB-INF/views/include/taglib.jsp" %>
|
|
|
+
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+ <title>ROOS页面统计</title>
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
+ <style>
|
|
|
+ .table th{
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .table td{
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+ .ul-form input,select{
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ .ys-kin input,span{
|
|
|
+ margin-left: 10px;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+<ul class="nav nav-tabs">
|
|
|
+ <li class="active"><a href="${ctx}/user/behavior/record/list?behaviorType=2">ROOS页面统计</a></li>
|
|
|
+</ul>
|
|
|
+<form:form id="searchForm" modelAttribute="cmBehaviorRecord" action="${ctx}/user/behavior/record/list?behaviorType=2" method="post" class="breadcrumb form-search">
|
|
|
+ <input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|
|
+ <input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|
|
+ <div class="ul-form">
|
|
|
+ <label>IP:</label>
|
|
|
+ <form:input path="IP" htmlEscape="false" maxlength="15" cssStyle="width: 150px" class="input-mini"/>
|
|
|
+ <label>公司名称:</label>
|
|
|
+ <form:input path="name" htmlEscape="false" maxlength="11" cssStyle="width: 150px" class="input-mini"/>
|
|
|
+ <label>公司类型:</label>
|
|
|
+ <form:select path="userIdentity" cssStyle="width: 150px" class="input-medium required">
|
|
|
+ <form:option value="" label="请选择"/>
|
|
|
+ <form:option value="2" label="机构"/>
|
|
|
+ <form:option value="3" label="供应商"/>
|
|
|
+ <form:option value="1" label="游客"/>
|
|
|
+ </form:select>
|
|
|
+ <label>联系人:</label>
|
|
|
+ <form:input path="linkMan" htmlEscape="false" maxlength="20" cssStyle="width: 150px" class="input-small"/>
|
|
|
+ <label>手机号码:</label>
|
|
|
+ <form:input path="contractMobile" htmlEscape="false" maxlength="20" cssStyle="width: 150px" class="input-small"/>
|
|
|
+ <label>协销:</label>
|
|
|
+ <form:input path="spName" htmlEscape="false" maxlength="20" cssStyle="width: 150px" class="input-small"/>
|
|
|
+ <div class="ys-kin" style="margin-top: 20px">
|
|
|
+ <label>访问日期:</label>
|
|
|
+ <input name="startTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
|
+ value="${cmBehaviorRecord.startTime}"
|
|
|
+ onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/> <span> - </span>
|
|
|
+ <input name="endTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
|
+ value="${cmBehaviorRecord.endTime}"
|
|
|
+ onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
|
|
|
+ <input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
|
|
|
+ </div>
|
|
|
+ <div class="clearfix"></div>
|
|
|
+ </div>
|
|
|
+</form:form>
|
|
|
+<sys:message content="${message}"/>
|
|
|
+<table id="contentTable" class="table table-striped table-bordered table-condensed">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th>IP</th>
|
|
|
+ <th>公司类型</th>
|
|
|
+ <th>公司名称</th>
|
|
|
+ <th>联系人</th>
|
|
|
+ <th>手机号码</th>
|
|
|
+ <th>所属协销</th>
|
|
|
+ <th>咨询姓名</th>
|
|
|
+ <th>咨询手机号码</th>
|
|
|
+ <th>访问页面数量</th>
|
|
|
+ <th>总时长</th>
|
|
|
+ <th>访问日期</th>
|
|
|
+ <th>操作</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <c:forEach items="${page.list}" var="cmBehaviorRecord" varStatus="index">
|
|
|
+ <tr>
|
|
|
+ <td>${cmBehaviorRecord.IP}</td>
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 2 || cmBehaviorRecord.userIdentity eq 4}">
|
|
|
+ 机构
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 3}">
|
|
|
+ 供应商
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userID == '0'}">
|
|
|
+ 游客
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userID != '0' && (cmBehaviorRecord.userIdentity == null || cmBehaviorRecord.userIdentity == '')}">
|
|
|
+ ---
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <c:if test="${cmBehaviorRecord.userID == '0'}">
|
|
|
+ <td>---</td>
|
|
|
+ <td>---</td>
|
|
|
+ <td>---</td>
|
|
|
+ <td>---</td>
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userID != '0'}">
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 2}">
|
|
|
+ ${cmBehaviorRecord.name}
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 4}">
|
|
|
+ ${cmBehaviorRecord.linkMan}
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 3}">
|
|
|
+ ${cmBehaviorRecord.sname}
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 2 || cmBehaviorRecord.userIdentity eq 4}">
|
|
|
+ ${cmBehaviorRecord.linkMan}
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 3}">
|
|
|
+ ${cmBehaviorRecord.slinkMan}
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 2 || cmBehaviorRecord.userIdentity eq 4}">
|
|
|
+ ${cmBehaviorRecord.contractMobile}
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.userIdentity eq 3}">
|
|
|
+ ${cmBehaviorRecord.scontractMobile}
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.spName ne null}">
|
|
|
+ ${cmBehaviorRecord.spName}
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.spName eq null}">
|
|
|
+ ---
|
|
|
+ </c:if></td>
|
|
|
+ </c:if>
|
|
|
+ <td>
|
|
|
+ <c:if test="${cmBehaviorRecord.consultName eq null}">
|
|
|
+ ---
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.consultName ne null}">
|
|
|
+ ${cmBehaviorRecord.consultName}
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <td><c:if test="${cmBehaviorRecord.consultMobile eq null}">
|
|
|
+ ---
|
|
|
+ </c:if>
|
|
|
+ <c:if test="${cmBehaviorRecord.consultMobile ne null}">
|
|
|
+ ${cmBehaviorRecord.consultMobile}
|
|
|
+ </c:if>
|
|
|
+ </td>
|
|
|
+ <td>${cmBehaviorRecord.numbers}</td>
|
|
|
+ <td>${cmBehaviorRecord.accessDuration}</td>
|
|
|
+ <td>${cmBehaviorRecord.accessDate}</td>
|
|
|
+ <td>
|
|
|
+ <a href="${ctx}/user/behavior/record/recordList?IP=${cmBehaviorRecord.IP}&accessDate=${cmBehaviorRecord.accessDate}&userID=${cmBehaviorRecord.userID}&behaviorType=2">查看详情</a>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </c:forEach>
|
|
|
+ </tbody>
|
|
|
+</table>
|
|
|
+<div class="pagination">${page}</div>
|
|
|
+<% request.setAttribute("caimeiCore", Global.getConfig("caimei.core"));%>
|
|
|
+<script type="text/javascript">
|
|
|
+ function page(n,s){
|
|
|
+ $("#pageNo").val(n);
|
|
|
+ $("#pageSize").val(s);
|
|
|
+ $("#searchForm").submit();
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+</script>
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|