|
@@ -97,10 +97,11 @@
|
|
|
<th width="10%">姓名</th>
|
|
|
<th width="20%">企业名称</th>
|
|
|
<th width="10%">企业地区</th>
|
|
|
- <th width="10%">最近使用</th>
|
|
|
+ <th width="12%">最近使用</th>
|
|
|
<!--<th width="10%">在线时长(<%= filter.loginMsg === undefined ? '所有' : filter.loginMsg %>)</th>-->
|
|
|
<th width="10%">累计时长</th>
|
|
|
- <th width="15%">注册时间 / 最近登录</th>
|
|
|
+ <th width="10%">注册时间</th>
|
|
|
+ <th width="10%">最近登录</th>
|
|
|
<% if (manager.superAdmin == 1) { %>
|
|
|
<th>操作</th>
|
|
|
<% }%>
|
|
@@ -116,7 +117,8 @@
|
|
|
<td><%= model.province[user.province] %></td>
|
|
|
<td><%= compilationMap[user.latest_used]?compilationMap[user.latest_used].name:""%></td>
|
|
|
<td><a onclick="getOnlineInfo('<%= user._doc.filter%>')" href="#time-detail" data-toggle="modal" data-target="#time-detail"><%= user._doc.online_times %></a></td>
|
|
|
- <td><%= moment(user.create_time).format('YYYY-MM-DD HH:mm:ss') %><br><%= 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><%= user.latest_login?moment(user.latest_login).format('YYYY-MM-DD HH:mm:ss'):"" %></td>
|
|
|
<% if (manager.superAdmin == 1) { %>
|
|
|
<td>
|
|
|
<a onclick='deleteUser("<%= user._id.toString()%>")' data-toggle="modal" data-target="#delUser" class="btn text-danger" style="padding: 0px">删除</a>
|