|
|
|
@@ -12,15 +12,15 @@ |
|
|
|
<tbody> |
|
|
|
<% if user_nps.present? %> |
|
|
|
<% user_nps.each_with_index do |nps, index| %> |
|
|
|
<tr class="user-item-<%= nps.user.id %>"> |
|
|
|
<tr class="user-item-<%= nps.user.nil? ? "用户已注销" : nps.user.id %>"> |
|
|
|
<td><%= list_index_no((params[:page] || 1).to_i, index) %></td> |
|
|
|
<td class="text-left"> |
|
|
|
<%= link_to "/#{nps.user.login}", target: '_blank' do %> |
|
|
|
<%= overflow_hidden_span nps.user.real_name, width: 100 %> |
|
|
|
<%= link_to "/#{nps.user.nil? ? "用户已注销" : nps.user.login}", target: '_blank' do %> |
|
|
|
<%= overflow_hidden_span (nps.user.nil? ? "用户已注销" : nps.user.real_name), width: 100 %> |
|
|
|
<% end %> |
|
|
|
</td> |
|
|
|
<td><%= display_text(nps.created_at&.strftime('%Y-%m-%d %H:%M')) %></td> |
|
|
|
<td><%= display_text(nps.user.last_login_on&.strftime('%Y-%m-%d %H:%M')) %></td> |
|
|
|
<td><%= display_text(nps.user.nil? ? "用户已注销" : nps.user.last_login_on&.strftime('%Y-%m-%d %H:%M')) %></td> |
|
|
|
<td><%= nps.action_type == 'close' ? '--' : nps.score %></td> |
|
|
|
<td><%= nps.memo %></td> |
|
|
|
</tr> |
|
|
|
|