123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- <%--
- Created by IntelliJ IDEA.
- User: Administrator
- Date: 2020/4/12
- Time: 12:01
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/WEB-INF/views/include/taglib.jsp" %>
- <html>
- <head>
- <title>机构活跃分析管理</title>
- <meta name="decorator" content="default"/>
- <style type="text/css">
- .table th {
- text-align: center;
- }
- .table td {
- text-align: center;
- }
- .livelyProportion {
- background: #f5f5f5;
- height: 150px;
- display: flex;
- list-style: none;
- }
- .livelyProportion>li {
- flex: 1;
- text-align: center;
- margin: auto 0
- }
- </style>
- <script type="text/javascript">
- $(document).ready(function () {
- });
- function page(n, s) {
- $("#pageNo").val(n);
- $("#pageSize").val(s);
- $("#searchForm").submit();
- return false;
- }
- </script>
- </head>
- <body>
- <ul class="nav nav-tabs">
- <li><a href="${ctx}/new/user/cmSp/cmSpList/">协销人员列表</a></li>
- <shiro:hasPermission name="user:newCmClub:edit">
- <li><a href="${ctx}/new/user/cmSp/cmSpForm">添加协销人员</a></li>
- </shiro:hasPermission>
- <li><a href="${ctx}/serviceteam/cmServiceteamRole/">协销小组</a></li>
- <li><a href="${ctx}/new/user/cmSp/leader/">协销总管理员</a></li>
- <li class="active"><a href="${ctx}/new/user/cmSp/cmSpLivelyClubList/">机构活跃分析</a></li>
- </ul>
- <ul class="breadcrumb livelyProportion" >
- <li>
- <h4>活跃机构</h4>
- <br>
- <p>(6个月内有登录商城等行为)</p>
- <h2>${livelyClub}</h2>
- </li>
- <li>
- <h4>不活跃机构</h4>
- <br>
- <p>(6个月内未登录商城等行为)</p>
- <h2>${nolivelyClub}</h2>
- </li>
- <li>
- <h4>活跃机构占比</h4>
- <br>
- <h2>${livelyClubProportion}%</h2>
- </li>
- <li>
- <h4>不活跃机构占比</h4>
- <br>
- <h2>${nolivelyClubProportion}%</h2>
- </li>
- </ul>
- <form:form id="searchForm" modelAttribute="newCmSp" action="${ctx}/new/user/cmSp/cmSpLivelyClubList/" 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>协销ID:</label>--%>
- <%-- <form:input path="serviceProviderID" htmlEscape="false" maxlength="20" class="input-medium"/>--%>
- <label>协销姓名:</label>
- <form:input path="linkMan" htmlEscape="false" maxlength="20" class="input-medium"/>
- <label>手机号:</label>
- <form:input path="contractMobile" htmlEscape="false" maxlength="20" class="input-medium"/>
- <input id="btnSubmit" class="btn btn-primary" type="submit" value="查询"/>
- <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>协销ID</th>
- <th>协销姓名</th>
- <th>手机号</th>
- <th>创建时间</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${page.list}" var="newCmSp">
- <tr>
- <td>${newCmSp.serviceProviderID}</td>
- <td>${newCmSp.linkMan}</td>
- <td>${newCmSp.contractMobile}</td>
- <td>${newCmSp.addTime}</td>
- <td>
- <a href="${ctx}/new/user/cmSp/cmSpLivelyClubFrom?spID=${newCmSp.serviceProviderID}">查看详情</a>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- <div class="pagination">${page}</div>
- <script>
- </script>
- </body>
- </html>
|