<!doctype html>
|
<html xmlns:th="http://www.thymeleaf.org" xmlns:matrix="http://www.w3.org/1999/xhtml">
|
<head>
|
<meta charset="utf-8">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
name="viewport"/>
|
<title th:text="${session.userInfo.shopName }"></title>
|
|
<!-- Set render engine for 360 browser -->
|
<meta name="renderer" content="webkit">
|
|
<!-- No Baidu Siteapp-->
|
<meta http-equiv="Cache-Control" content="no-siteapp"/>
|
|
|
<!-- Add to homescreen for Chrome on Android -->
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
<!-- Add to homescreen for Safari on iOS -->
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
<meta name="apple-mobile-web-app-title" content="Amaze UI"/>
|
|
|
<script type="text/javascript"
|
th:src="@{/js/plugin/jquery-2.1.4.min.js}"></script>
|
<script type="text/javascript"
|
th:src="@{/js/systools/DDMBase.js}"></script>
|
<link rel="stylesheet"
|
th:href="@{/plugin/amazingUI/css/amazeui.min.css}">
|
<link rel="stylesheet"
|
th:href="@{/plugin/amazingUI/css/app.css}">
|
<link rel="stylesheet" type="text/css"
|
th:href="@{/css/dingCRMAccount.css}">
|
|
</head>
|
<body>
|
<!-- 我的客户页面 -->
|
<!-- 头部开始 -->
|
<header data-am-widget="header" class="am-header color-w back-m1 ">
|
<div class="am-header-left am-header-nav">
|
|
<a th:if="${lookInfo >0}" th:href="@{/admin/redirect/hive/mobile/CRM-vipInfo-search}" class="">
|
<i class="am-header-icon am-icon-chevron-left"></i>
|
</a>
|
|
<a th:if="${lookInfo <=0}" th:href="@{/admin/redirect/hive/mobile/CRM-account-my}" class="">
|
<i class="am-header-icon am-icon-chevron-left"></i>
|
</a>
|
|
</div>
|
<h1 class="am-header-title">
|
<a href="#title-link" class="" th:text="${session.lookVipInfo.vipName}+'客户信息'"> </a>
|
</h1>
|
<!-- <div class="am-header-right am-header-nav">
|
<a href="user.html" class=""> <i
|
class="am-header-icon am-icon-bars"></i>
|
</a>
|
</div> -->
|
</header>
|
<!-- 头部结束 -->
|
<!-- 内容开始 -->
|
<ul class="am-avg-sm-3 boxes" id="boxs">
|
|
<li class="box box-1"><a
|
th:href="@{/admin/redirect/hive/mobile/CRM-account-msg}"> <img
|
th:src="@{/images/dingImg/jbmsg.png}"></img><br>
|
<small class="boxs">会员基本信息</small>
|
</a></li>
|
|
|
<li class="box box-2"><a
|
th:href="@{/admin/redirect/hive/mobile/CRM-account-card}"> <img
|
th:src="@{/images/dingImg/vipmsg.png}"></img><br>
|
<small class="boxs">会员卡信息</small>
|
</a></li>
|
|
|
<li class="box box-3"><a
|
th:href="@{/admin/redirect/hive/mobile/CRM-account-mealuse}"> <img
|
th:src="@{/images/dingImg/tcuse.png}"></img><br>
|
<small class="boxs">套餐项目使用情况</small>
|
</a></li>
|
|
|
<li class="box box-5"><a
|
th:href="'/admin/customer/showVipMoneyCardList?vipId='+${session.lookVipInfo?.id}"> <img
|
th:src="@{/images/dingImg/xjdd.png}"></img><br> <small
|
class="boxs">充值卡使用情况</small>
|
</a></li>
|
<li class="box box-6">
|
<a th:href="@{/admin/redirect/hive/mobile/CRM-account-follow}"> <img
|
th:src="@{/images/dingImg/gjjl.png}"><br> <small class="boxs">跟进记录</small>
|
</a></li>
|
<li class="box box-6">
|
<a th:href="@{/admin/redirect/hive/mobile/vip-archives?id=__${session.lookVipInfo.id}__}"> <img
|
th:src="@{/images/dingImg/gjjl.png}"><br> <small class="boxs">会员档案</small>
|
</a></li>
|
</ul>
|
<!-- 内容结束 -->
|
<script th:src="@{/plugin/amazingUI/js/handlebars.min.js}"></script>
|
<script
|
th:src="@{/plugin/amazingUI/js/amazeui.widgets.helper.js}"></script>
|
<!-- index js -->
|
<script type="text/javascript">
|
$(function () {
|
var count = $("#boxs").find("li").length;
|
var index = count % 3;
|
if (index == 1) {
|
$("#boxs").append(" <li class='box'>" + "</li>");
|
$("#boxs").append(" <li class='box'>" + "</li>");
|
|
}
|
if (index == 2) {
|
$("#boxs").append(" <li class='box'>" + "</li>");
|
|
}
|
|
})
|
</script>
|
</body>
|
</html>
|