|
@@ -0,0 +1,511 @@
|
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
|
+<%@ include file="/WEB-INF/views/include/taglib.jsp" %>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <title>详情</title>
|
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+ $(document).ready(function () {
|
|
|
|
+ //$("#name").focus();cmOrderRemarksFormNew.jsp
|
|
|
|
+ $("#inputForm").validate({
|
|
|
|
+ submitHandler: function (form) {
|
|
|
|
+ loading('正在提交,请稍等...');
|
|
|
|
+ form.submit();
|
|
|
|
+ },
|
|
|
|
+ errorContainer: "#messageBox",
|
|
|
|
+ errorPlacement: function (error, element) {
|
|
|
|
+ $("#messageBox").text("输入有误,请先更正。");
|
|
|
|
+ if (element.is(":checkbox") || element.is(":radio") || element.parent().is(".input-append")) {
|
|
|
|
+ error.appendTo(element.parent().parent());
|
|
|
|
+ } else {
|
|
|
|
+ error.insertAfter(element);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ });
|
|
|
|
+
|
|
|
|
+ function getmember() {
|
|
|
|
+ var leaderId = $("#leaderId").val();
|
|
|
|
+ if (leaderId > 0) {
|
|
|
|
+ $.get("${ctx}/new/user/agency/group", {'leaderId': leaderId}, function (data) {
|
|
|
|
+ console.log(data);
|
|
|
|
+ var opts = "<option value='" + data[0].serviceProviderID + "'>" + data[0].name + "</option>";
|
|
|
|
+ if (data.length > 1) {
|
|
|
|
+ for (let i = 1; i < data.length; i++) {
|
|
|
|
+ opts += "<option value='" + data[i].serviceProviderID + "' >" + data[i].name + "</option>";
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ $("#findgroup").html('').append(opts);
|
|
|
|
+ });
|
|
|
|
+ } else {
|
|
|
|
+ $("#findgroup").html('');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function previewFile(url) {
|
|
|
|
+ var index = url.lastIndexOf(".");
|
|
|
|
+ var suffix = url.substring(index);
|
|
|
|
+ if (suffix.startsWith(".png") || suffix.startsWith(".jpg") || suffix.startsWith(".pdf")) {
|
|
|
|
+ window.open(url, '_blank');
|
|
|
|
+ } else {
|
|
|
|
+ var previewUrl = "https://view.officeapps.live.com/op/view.aspx?src=" + encodeURIComponent(url);
|
|
|
|
+ window.open(previewUrl, '_blank');
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function page(n, s) {
|
|
|
|
+ $("#pageNo").val(n);
|
|
|
|
+ $("#pageSize").val(s);
|
|
|
|
+ $("#searchForm").submit();
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ </script>
|
|
|
|
+ <style>
|
|
|
|
+ .table th {
|
|
|
|
+ text-align: center
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .table td {
|
|
|
|
+ text-align: center
|
|
|
|
+ }
|
|
|
|
+ </style>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<ul class="nav nav-tabs">
|
|
|
|
+
|
|
|
|
+ <li><a href="${ctx}/new/user/agency/ReportList">报备列表</a></li>
|
|
|
|
+ <li class="active"><a href="${ctx}/new/user/agency/cmRegistReportList?reportID=${cmClubRemarks.reportID}">详情</a></li>
|
|
|
|
+
|
|
|
|
+</ul>
|
|
|
|
+<br/>
|
|
|
|
+<form:form id="searchForm" modelAttribute="cmClubRemarks" action="${ctx}/new/user/agency/cmRegistReportList?reportID=${cmClubRemarks.reportID}" 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="flex-wrap">
|
|
|
|
+ <div>
|
|
|
|
+ <label>关键词:</label>
|
|
|
|
+ <form:input path="remarks" htmlEscape="false" class="input-medium" maxlength="10"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label>咨询类别:</label>
|
|
|
|
+ <form:select path="consult" class="input-medium">
|
|
|
|
+ <form:option value="" label="全部"/>
|
|
|
|
+ <c:forEach items="${cmClubRemarks.consults}" var="consults">
|
|
|
|
+ <form:option value="${consults.id}">${consults.className}</form:option>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </form:select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label>机构名称:</label>
|
|
|
|
+ <form:input path="clubName" class="input-medium" maxlength="50"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label>小组:</label>
|
|
|
|
+ <form:select path="leaderId" class="input-medium" onchange="getmember()">
|
|
|
|
+ <form:option value="" label="全部"/>
|
|
|
|
+ <c:forEach items="${cmClubRemarks.teams}" var="team">
|
|
|
|
+ <form:option value="${team.leaderId}">${team.leaderName}</form:option>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </form:select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label>组员:</label>
|
|
|
|
+ <form:select path="serviceProviderId" class="input-medium" id="findgroup">
|
|
|
|
+ <form:option value="" label="全部"/>
|
|
|
|
+ </form:select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label class="control-label">添加日期:</label>
|
|
|
|
+ <form:input path="startAddTime" type="text" maxlength="20" class="input-mini Wdate"
|
|
|
|
+ value="${cmClubRemarks.startAddTime}" cssStyle="width: 130px"
|
|
|
|
+ onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
|
|
|
|
+ -
|
|
|
|
+ <form:input path="endAddTime" type="text" maxlength="20" class="input-mini Wdate"
|
|
|
|
+ value="${cmClubRemarks.endAddTime}" cssStyle="width: 130px"
|
|
|
|
+ onclick="WdatePicker({dateFmt:'yyyy-MM-dd',isShowClear:false});"/>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <label>新分配机构:</label>
|
|
|
|
+ <form:select path="newDeal" class="input-medium">
|
|
|
|
+ <form:option value="" label="请选择"/>
|
|
|
|
+ <form:option value="0">否</form:option>
|
|
|
|
+ <form:option value="1">是</form:option>
|
|
|
|
+ </form:select>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="item">
|
|
|
|
+ <input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <sys:message content="${message}"/>
|
|
|
|
+ <c:if test="${not empty remarksList}">
|
|
|
|
+ <div style="overflow-x: hidden;word-break:break-all">
|
|
|
|
+ <c:forEach items="${remarksList}" var="clubRemarks" varStatus="remark">
|
|
|
|
+ <div class="td clear" style="dashed:#0066CC;">
|
|
|
|
+ <div style="font-weight: bold;width: 100%;float: left;">
|
|
|
|
+ <%-- <c:if test="${not empty clubRemarks.oldName}">--%>
|
|
|
|
+ <%-- <span style="float: left;">${clubRemarks.oldName}</span>--%>
|
|
|
|
+ <%-- </c:if>--%>
|
|
|
|
+ <%-- <c:if test="${empty clubRemarks.oldName}">--%>
|
|
|
|
+ <%-- <span style="float: left;">${clubRemarks.spName}</span>--%>
|
|
|
|
+ <%-- </c:if>--%>
|
|
|
|
+ <span style="float: left;">${clubRemarks.spName}</span>
|
|
|
|
+ <span style="float: left;margin-left:20px;"><fmt:formatDate value="${clubRemarks.addTime}"
|
|
|
|
+ pattern="yyyy-MM-dd HH:mm"/></span>
|
|
|
|
+ <span style="float: left;margin-left:120px;">管理员:${clubRemarks.leaderName}</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询人 :
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">${clubRemarks.questionMan}</div>
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 机构名称:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">${clubRemarks.clubName}<c:if test="${clubRemarks.newDeal eq 1}"><span style="color: red">(新分配)</span></c:if></div>
|
|
|
|
+ <c:if test="${not empty clubRemarks.clubType}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 机构类型:
|
|
|
|
+ </div>
|
|
|
|
+ <div style=" width: 150px;float: left;margin: 10px 0;position: relative;">${clubRemarks.clubType}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询类别:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;">${clubRemarks.consultType}</div>
|
|
|
|
+ <c:if test="${not empty clubRemarks.productName}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询商品:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;"><img src="${clubRemarks.mainImage}"
|
|
|
|
+ width="50"
|
|
|
|
+ height="50"> ${clubRemarks.productName}
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 供应商名称:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;">${clubRemarks.shopName}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${not empty clubRemarks.proName}">
|
|
|
|
+ <table id="contentTable" class="table table-striped table-bordered table-condensed">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th>商品图片</th>
|
|
|
|
+ <th>商品名称</th>
|
|
|
|
+ <th>报备事由</th>
|
|
|
|
+ <th>审核状态</th>
|
|
|
|
+ <th>审核人</th>
|
|
|
|
+ <th>审核时间</th>
|
|
|
|
+ </tr>
|
|
|
|
+ <td><img src="${clubRemarks.productMainImage}"
|
|
|
|
+ width="50"
|
|
|
|
+ height="50"></td>
|
|
|
|
+ <td>${clubRemarks.proName}</td>
|
|
|
|
+ <td>${clubRemarks.reportText}</td>
|
|
|
|
+ <td><c:if test="${clubRemarks.reportStatus eq 1}">已审核</c:if>
|
|
|
|
+ <c:if test="${clubRemarks.reportStatus eq 2}">待审核</c:if>
|
|
|
|
+ <c:if test="${clubRemarks.reportStatus eq 3}">审核未通过</c:if>
|
|
|
|
+ </td>
|
|
|
|
+ <td>${clubRemarks.auditName}</td>
|
|
|
|
+ <td>${clubRemarks.auditTime}</td>
|
|
|
|
+ </thead>
|
|
|
|
+ </table>
|
|
|
|
+ </c:if>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <c:if test="${not empty clubRemarks.pinceSensitve}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 价格敏感度 :
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${clubRemarks.pinceSensitve eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">敏感</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.pinceSensitve eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">适中</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.pinceSensitve eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">不敏感</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.pinceSensitve eq 4}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">不明确</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${not empty clubRemarks.satisfied}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 意向程度:
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${clubRemarks.satisfied eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向强烈</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.satisfied eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向一般</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.satisfied eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向平淡</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.satisfied eq 4}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">随便看看</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${not empty clubRemarks.followup}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 跟进状态:
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${clubRemarks.followup eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">跟进中</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.followup eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">跟进完成</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${clubRemarks.followup eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">已放弃</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 关键词记录:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 800px;float: left;margin: 10px 0;">
|
|
|
|
+ ${clubRemarks.remarks}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${not empty clubRemarks.extra}">
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 额外说明:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 800px;float: left;margin: 10px 0;">
|
|
|
|
+ ${clubRemarks.extra}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;">
|
|
|
|
+ <c:if test="${not empty clubRemarks.imageList}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 图片:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 1000px;float: left;">
|
|
|
|
+ <c:forEach items="${clubRemarks.imageList}" var="imageUrl" varStatus="remarkImage">
|
|
|
|
+ <a href="${imageUrl}" target="_blank">
|
|
|
|
+ <img class="enlarge-pic" style="height: 150px;width: 150px;margin-top: 10px"
|
|
|
|
+ src="${imageUrl}">
|
|
|
|
+ </a>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text"
|
|
|
|
+ style="width: 100%;float: left;margin-top: 20px;border-bottom:1px dashed #999999;padding: 10px 0;">
|
|
|
|
+ <c:if test="${not empty clubRemarks.fileList}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 文件:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 1000px;float: left;margin: 10px 0;">
|
|
|
|
+ <c:forEach items="${clubRemarks.fileList}" var="item" varStatus="remarkFile">
|
|
|
|
+ <p>${item.fileName}
|
|
|
|
+ <a onclick="previewFile('${item.fileUrl}')" target="_blank">预览</a>
|
|
|
|
+ <a href="${ctx}/new/user/agency/remarks/download?fileName=${item.fileName}&ossName=${item.ossName}">下载</a>
|
|
|
|
+ </p>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="pagination">${page}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+<%-- 未注册机构信息 --%>
|
|
|
|
+ <c:if test="${not empty remarksLists}">
|
|
|
|
+ <div style="overflow-x: hidden;word-break:break-all">
|
|
|
|
+ <c:forEach items="${remarksLists}" var="visitRemarks" varStatus="remark">
|
|
|
|
+ <div class="td clear">
|
|
|
|
+ <div style="font-weight: bold;width: 100%;float: left;">
|
|
|
|
+ <%-- <c:if test="${not empty visitRemarks.oldName}">--%>
|
|
|
|
+ <%-- <span style="float: left;">${visitRemarks.oldName}</span>--%>
|
|
|
|
+ <%-- </c:if>--%>
|
|
|
|
+ <%-- <c:if test="${empty visitRemarks.oldName}">--%>
|
|
|
|
+ <%-- <span style="float: left;">${visitRemarks.serviceName}</span>--%>
|
|
|
|
+ <%-- </c:if>--%>
|
|
|
|
+ <span style="float: left;">${visitRemarks.serviceName}</span>
|
|
|
|
+ <span style="float: left;margin-left:10px;"><fmt:formatDate value="${visitRemarks.addTime}"
|
|
|
|
+ pattern="yyyy-MM-dd HH:mm"/></span>
|
|
|
|
+ <span style="float: left;margin-left:120px;">管理员:${visitRemarks.leaderName}</span>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询人:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">${visitRemarks.questionMan}</div>
|
|
|
|
+ <c:if test="${not empty visitRemarks.clubType}">
|
|
|
|
+ <div style="width: 350px;font-weight: bold;margin: 10px 0;float: left;text-align: right;">
|
|
|
|
+ 机构类型:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;">${visitRemarks.clubType}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询类别:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;">${visitRemarks.consultType}</div>
|
|
|
|
+ <c:if test="${not empty visitRemarks.productName}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 咨询商品:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;"><img src="${visitRemarks.mainImage}"
|
|
|
|
+ width="50"
|
|
|
|
+ height="50"> ${visitRemarks.productName}
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 供应商名称:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 300px;float: left;margin: 10px 0;">${visitRemarks.shopName}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${not empty visitRemarks.proName}">
|
|
|
|
+ <table id="contentTable" class="table table-striped table-bordered table-condensed">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr>
|
|
|
|
+ <th>商品图片</th>
|
|
|
|
+ <th>商品名称</th>
|
|
|
|
+ <th>报备事由</th>
|
|
|
|
+ <th>审核状态</th>
|
|
|
|
+ <th>审核人</th>
|
|
|
|
+ <th>审核时间</th>
|
|
|
|
+ </tr>
|
|
|
|
+ <td><img src="${visitRemarks.productMainImage}"
|
|
|
|
+ width="50"
|
|
|
|
+ height="50"></td>
|
|
|
|
+ <td>${visitRemarks.proName}</td>
|
|
|
|
+ <td>${visitRemarks.reportText}</td>
|
|
|
|
+ <td><c:if test="${visitRemarks.reportStatus eq 1}">已审核</c:if>
|
|
|
|
+ <c:if test="${visitRemarks.reportStatus eq 2}">待审核</c:if>
|
|
|
|
+ <c:if test="${visitRemarks.reportStatus eq 3}">审核未通过</c:if>
|
|
|
|
+ </td>
|
|
|
|
+ <td>${visitRemarks.auditName}</td>
|
|
|
|
+ <td>${visitRemarks.auditTime}</td>
|
|
|
|
+ </thead>
|
|
|
|
+ </table>
|
|
|
|
+ </c:if>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <c:if test="${not empty visitRemarks.pinceSensitve}">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 价格敏感度 :
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${visitRemarks.pinceSensitve eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">敏感</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.pinceSensitve eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">适中</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.pinceSensitve eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">不敏感</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.pinceSensitve eq 4}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">不明确</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${not empty visitRemarks.satisfied}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 意向程度:
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${visitRemarks.satisfied eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向强烈</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.satisfied eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向一般</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.satisfied eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">意向平淡</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.satisfied eq 4}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">随便看看</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${not empty visitRemarks.followup}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 跟进状态:
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${visitRemarks.followup eq 1}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">跟进中</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.followup eq 2}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">跟进完成</div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <c:if test="${visitRemarks.followup eq 3}">
|
|
|
|
+ <div style="width: 150px;float: left;margin: 10px 0;">已放弃</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 关键词记录:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 800px;float: left;margin: 10px 0;">
|
|
|
|
+ ${visitRemarks.remarks}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ <c:if test="${not empty visitRemarks.extra}">
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;margin-top: 20px;">
|
|
|
|
+ <div style="width: 80px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 额外说明:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 800px;float: left;margin: 10px 0;">
|
|
|
|
+ ${visitRemarks.extra}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ <div class="td-text" style="width: 100%;float: left;">
|
|
|
|
+ <c:if test="${not empty visitRemarks.imageList}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 图片:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 1000px;float: left;">
|
|
|
|
+ <c:forEach items="${visitRemarks.imageList}" var="imageUrl" varStatus="remarkImage">
|
|
|
|
+ <a href="${imageUrl}" target="_blank">
|
|
|
|
+ <img class="enlarge-pic" style="height: 150px;width: 150px;margin-top: 10px"
|
|
|
|
+ src="${imageUrl}">
|
|
|
|
+ </a>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="td-text"
|
|
|
|
+ style="width: 100%;float: left;margin-top: 20px;border-bottom:1px dashed #999999;padding: 10px 0;">
|
|
|
|
+ <c:if test="${not empty visitRemarks.fileList}">
|
|
|
|
+ <div style="width: 100px;font-weight: bold;margin: 10px 0;float: left;text-align: right;margin-right: 10px;">
|
|
|
|
+ 文件:
|
|
|
|
+ </div>
|
|
|
|
+ <div style="width: 1000px;float: left;margin: 10px 0;">
|
|
|
|
+ <c:forEach items="${visitRemarks.fileList}" var="item" varStatus="remarkFile">
|
|
|
|
+ <p>${item.fileName}
|
|
|
|
+ <a onclick="previewFile('${item.fileUrl}')" target="_blank">预览</a>
|
|
|
|
+ <a href="${ctx}/new/user/agency/remarks/download?fileName=${item.fileName}&ossName=${item.ossName}">下载</a>
|
|
|
|
+ </p>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ </c:if>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </c:forEach>
|
|
|
|
+ </div>
|
|
|
|
+ <div class="pagination">${page}</div>
|
|
|
|
+ </c:if>
|
|
|
|
+
|
|
|
|
+ <c:if test="${empty page.list}">
|
|
|
|
+ <font size="3" style="text-align: center;display: block;line-height: 80px;" color="#0066CC">暂无任何备注..</font>
|
|
|
|
+ </c:if>
|
|
|
|
+</form:form>
|
|
|
|
+</body>
|
|
|
|
+</html>
|