|
@@ -118,6 +118,8 @@
|
|
<div class="flex-header-th">入群状态</div>
|
|
<div class="flex-header-th">入群状态</div>
|
|
<div class="flex-header-th">微信触达</div>
|
|
<div class="flex-header-th">微信触达</div>
|
|
<div class="flex-header-th">电话触达</div>
|
|
<div class="flex-header-th">电话触达</div>
|
|
|
|
+ <div class="flex-header-th">首次咨询时间</div>
|
|
|
|
+ <div class="flex-header-th">最近咨询时间</div>
|
|
<div class="flex-header-th last">机构地址</div>
|
|
<div class="flex-header-th last">机构地址</div>
|
|
</div>
|
|
</div>
|
|
<div class="flex-header-tb">
|
|
<div class="flex-header-tb">
|
|
@@ -161,6 +163,22 @@
|
|
---
|
|
---
|
|
</c:if>
|
|
</c:if>
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="flex-header-td">
|
|
|
|
+ <c:if test="${not empty statistics.firstTime}">
|
|
|
|
+ ${statistics.firstTime}
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${empty statistics.firstTime}">
|
|
|
|
+ ---
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="flex-header-td">
|
|
|
|
+ <c:if test="${not empty statistics.recentlyTime}">
|
|
|
|
+ ${statistics.recentlyTime}
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${empty statistics.recentlyTime}">
|
|
|
|
+ ---
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
<div class="flex-header-td last">
|
|
<div class="flex-header-td last">
|
|
${statistics.province}${statistics.city}${statistics.town}
|
|
${statistics.province}${statistics.city}${statistics.town}
|
|
</div>
|
|
</div>
|
|
@@ -305,7 +323,7 @@
|
|
<H4 class="H_tag">访问记录</H4>
|
|
<H4 class="H_tag">访问记录</H4>
|
|
</div>
|
|
</div>
|
|
<div class="box-title">
|
|
<div class="box-title">
|
|
- <span>所有:<a class="line visit" href="javascript:void(0);"><c:if test="${!empty portrait.visitTotal}">${portrait.visitTotal}</c:if><c:if test="${empty portrait.visitTotal}">0</c:if> 条</a></span>
|
|
|
|
|
|
+ <span>所有:<a id="visitAll" class="line visit" href="javascript:void(0);"><c:if test="${!empty portrait.visitTotal}">${portrait.visitTotal}</c:if><c:if test="${empty portrait.visitTotal}">0</c:if> 条</a></span>
|
|
<span class="right_span">当前范围:<a id="visitNum" class="visit" href="javascript:void(0);"></a></span>
|
|
<span class="right_span">当前范围:<a id="visitNum" class="visit" href="javascript:void(0);"></a></span>
|
|
</div>
|
|
</div>
|
|
<div class="box-tabmain">
|
|
<div class="box-tabmain">
|
|
@@ -344,10 +362,22 @@
|
|
<script type="text/javascript" src="${ctxStatic}/modules/cmClubPortrait/cmClubPortrait.js"></script>
|
|
<script type="text/javascript" src="${ctxStatic}/modules/cmClubPortrait/cmClubPortrait.js"></script>
|
|
<script>
|
|
<script>
|
|
// 前往新后台
|
|
// 前往新后台
|
|
- $('.visit').click(function () {
|
|
|
|
|
|
+ $('#visitNum').click(function () {
|
|
|
|
+ var link = "";
|
|
|
|
+ var startTime = $('#visitTimeStart').val()
|
|
|
|
+ var endTime = $('#visitTimeStart').val()
|
|
|
|
+ var name = ${statistics.name}
|
|
|
|
+ $.get("${ctx}/jump/link", function (data) {
|
|
|
|
+ link = "https://manager.caimei365.com/#/user/record-list?type=second&corporateName="+name+"&startTime="+startTime+"&endTime="+endTime+"&token=" + data;
|
|
|
|
+ window.open(link, "_blank");
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+ // 前往新后台
|
|
|
|
+ $('#visitAll').click(function () {
|
|
var link = "";
|
|
var link = "";
|
|
|
|
+ var name = ${statistics.name}
|
|
$.get("${ctx}/jump/link", function (data) {
|
|
$.get("${ctx}/jump/link", function (data) {
|
|
- link = "https://manager.caimei365.com/#/user/record-list?token=" + data;
|
|
|
|
|
|
+ link = "https://manager.caimei365.com/#/user/record-list?type=second&corporateName="+name+"&token=" + data;
|
|
window.open(link, "_blank");
|
|
window.open(link, "_blank");
|
|
});
|
|
});
|
|
})
|
|
})
|