|
@@ -5,41 +5,51 @@
|
|
Time: 9:25
|
|
Time: 9:25
|
|
To change this template use File | Settings | File Templates.
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
--%>
|
|
|
|
+<%@ page import="com.thinkgem.jeesite.common.config.Global" %>
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
-<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
|
|
|
|
|
|
+<%@ include file="/WEB-INF/views/include/taglib.jsp" %>
|
|
|
|
|
|
<html>
|
|
<html>
|
|
<head>
|
|
<head>
|
|
<title>用户行为记录</title>
|
|
<title>用户行为记录</title>
|
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
|
+ <style>
|
|
|
|
+ .table th{
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ .table td{
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
<ul class="nav nav-tabs">
|
|
<ul class="nav nav-tabs">
|
|
<li class="active"><a href="${ctx}/user/behavior/record/list">用户行为记录</a></li>
|
|
<li class="active"><a href="${ctx}/user/behavior/record/list">用户行为记录</a></li>
|
|
</ul>
|
|
</ul>
|
|
-<form:form id="searchForm" modelAttribute="clubChangeSp" action="${ctx}/user/behavior/record/list" method="post" class="breadcrumb form-search">
|
|
|
|
|
|
+<form:form id="searchForm" modelAttribute="cmBehaviorRecord" action="${ctx}/user/behavior/record/list" method="post" class="breadcrumb form-search">
|
|
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|
<input id="pageNo" name="pageNo" type="hidden" value="${page.pageNo}"/>
|
|
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|
<input id="pageSize" name="pageSize" type="hidden" value="${page.pageSize}"/>
|
|
<div class="ul-form">
|
|
<div class="ul-form">
|
|
<label>公司名称:</label>
|
|
<label>公司名称:</label>
|
|
- <form:input path="clubName" htmlEscape="false" maxlength="11" class="input-mini"/>
|
|
|
|
|
|
+ <form:input path="name" htmlEscape="false" maxlength="11" class="input-mini"/>
|
|
<label>公司类型:</label>
|
|
<label>公司类型:</label>
|
|
- <form:select path="checkStatus" class="input-medium required">
|
|
|
|
|
|
+ <form:select path="companyType" class="input-medium required">
|
|
<form:option value="" label="请选择"/>
|
|
<form:option value="" label="请选择"/>
|
|
<form:option value="机构" label="机构"/>
|
|
<form:option value="机构" label="机构"/>
|
|
<form:option value="供应商" label="供应商"/>
|
|
<form:option value="供应商" label="供应商"/>
|
|
</form:select>
|
|
</form:select>
|
|
<label>联系人:</label>
|
|
<label>联系人:</label>
|
|
- <form:input path="linkMan1" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
|
|
|
|
+ <form:input path="linkMan" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
<label>手机号码:</label>
|
|
<label>手机号码:</label>
|
|
- <form:input path="linkMan1" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
|
|
|
|
+ <form:input path="contractMobile" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
<label>协销:</label>
|
|
<label>协销:</label>
|
|
- <form:input path="linkMan1" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
|
|
|
|
+ <form:input path="spName" htmlEscape="false" maxlength="20" class="input-small"/>
|
|
<label>访问时间:</label>
|
|
<label>访问时间:</label>
|
|
<input name="startTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
<input name="startTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
- value="${clubTemporary.startTime}"
|
|
|
|
|
|
+ value="${cmBehaviorRecord.startTime}"
|
|
onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/> -
|
|
onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/> -
|
|
<input name="endTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
<input name="endTime" type="text" readonly="readonly" maxlength="15" class="input-mini Wdate"
|
|
- value="${clubTemporary.endTime}"
|
|
|
|
|
|
+ value="${cmBehaviorRecord.endTime}"
|
|
onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
|
|
onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
|
|
<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
|
|
<input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
|
|
<div class="clearfix"></div>
|
|
<div class="clearfix"></div>
|
|
@@ -78,7 +88,9 @@
|
|
</tr>
|
|
</tr>
|
|
</tbody>
|
|
</tbody>
|
|
</table>
|
|
</table>
|
|
|
|
+<div class="pagination">${page}</div>
|
|
</body>
|
|
</body>
|
|
|
|
+<% request.setAttribute("caimeiCore", Global.getConfig("caimei.core"));%>
|
|
<script type="text/javascript">
|
|
<script type="text/javascript">
|
|
function page(n,s){
|
|
function page(n,s){
|
|
$("#pageNo").val(n);
|
|
$("#pageNo").val(n);
|