|
@@ -12,9 +12,10 @@
|
|
|
<div class="btn-group">
|
|
|
<button type="button" class="btn btn-default dropdown-toggle btn-sm" data-toggle="dropdown"
|
|
|
aria-haspopup="true" aria-expanded="false">
|
|
|
- 最近使用费用定额: <span class="caret"></span>
|
|
|
+ 最近使用费用定额:<lable><%= compilationMap[filter.latestUsed] === undefined ? '所有' : compilationMap[filter.latestUsed].name %></lable> <span class="caret"></span>
|
|
|
</button>
|
|
|
<ul class="dropdown-menu selector">
|
|
|
+ <li><a data-value="">所有</a></li>
|
|
|
<% for(let compilation of compilationList){ %>
|
|
|
<li><a data-value="<%= compilation._id.toString()%>"><%= compilation.name %></a></li>
|
|
|
<% } %>
|
|
@@ -25,7 +26,7 @@
|
|
|
<div class="btn-group">
|
|
|
<button type="button" class="btn btn-default dropdown-toggle btn-sm" data-toggle="dropdown"
|
|
|
aria-haspopup="true" aria-expanded="false">
|
|
|
- 已升级费用定额:<%= filter.upgradeCompilation === undefined ? '所有' : filter.upgradeCompilation %> <span class="caret"></span>
|
|
|
+ 已升级费用定额:<lable><%= compilationMap[filter.upGrade] === undefined ? '所有' : compilationMap[filter.upGrade].name %></lable> <span class="caret"></span>
|
|
|
</button>
|
|
|
<ul class="dropdown-menu selector">
|
|
|
<li><a data-value="">所有</a></li>
|
|
@@ -39,7 +40,7 @@
|
|
|
<div class="btn-group">
|
|
|
<button type="button" class="btn btn-default dropdown-toggle btn-sm" data-toggle="dropdown"
|
|
|
aria-haspopup="true" aria-expanded="false">
|
|
|
- 最新注册:<%= filter.regtimeMsg === undefined ? '所有' : filter.regtimeMsg %><span class="caret"></span>
|
|
|
+ 最新注册:<lable><%= filter.regtimeMsg === undefined ? '所有' : filter.regtimeMsg %></lable><span class="caret"></span>
|
|
|
</button>
|
|
|
<ul class="dropdown-menu selector">
|
|
|
<li><a data-value="0">所有</a></li>
|
|
@@ -54,7 +55,7 @@
|
|
|
<div class="btn-group">
|
|
|
<button type="button" class="btn btn-default dropdown-toggle btn-sm" data-toggle="dropdown"
|
|
|
aria-haspopup="true" aria-expanded="false">
|
|
|
- 最近登录:<%= filter.regtimeMsg === undefined ? '所有' : filter.regtimeMsg %><span class="caret"></span>
|
|
|
+ 最近登录:<lable><%= filter.loginMsg === undefined ? '所有' : filter.loginMsg %></lable><span class="caret"></span>
|
|
|
</button>
|
|
|
<ul class="dropdown-menu selector">
|
|
|
<li><a data-value="0">所有</a></li>
|
|
@@ -106,8 +107,8 @@
|
|
|
data-content="企业类型:<%= model.companyType[user.company_type] %>,企业规模:<%= model.companyScale[user.company_scale] %>"><%= user.company %></a>
|
|
|
</td>
|
|
|
<td><%= model.province[user.province] %></td>
|
|
|
- <td>重庆01版</td>
|
|
|
- <td>登录时间</td>
|
|
|
+ <td><%= compilationMap[user.latest_used]?compilationMap[user.latest_used].name:""%></td>
|
|
|
+ <td><%= user.latest_login?moment(user.latest_login).format('YYYY-MM-DD HH:mm:ss'):"" %></td>
|
|
|
<td><%= moment(user.create_time).format('YYYY-MM-DD HH:mm:ss') %></td>
|
|
|
<td><a role="button" data-toggle="modal" data-target="#view" onclick='getUserInfo("<%= user._id.toString()%>")'>详细</a></td>
|
|
|
<td><a href="#update" data-toggle="modal" data-target="#update" onclick='getUserUpgradeInfo("<%= user._id.toString()%>")'>升级</a></td>
|