You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
513 B
12 lines
513 B
6 years ago
|
[
|
||
|
<% @users && @users.each_with_index do |person,index| %>
|
||
|
<% if index == 0 %>
|
||
|
{"id":<%=index%>, "userid": "<%=person.id%>", "name": "所有人", "login": "<%=person.name%>", "searchKey": "<%=person.name%>"}
|
||
|
<%= index != @users.size-1 ? ',' : '' %>
|
||
|
<% else %>
|
||
|
{"id":<%=index%>, "userid": "<%=person.id%>", "name": "<%=person.show_name%>", "login": "<%=person.login%>", "searchKey": "<%=person.get_at_show_name%>"}
|
||
|
<%= index != @users.size-1 ? ',' : '' %>
|
||
|
<% end %>
|
||
|
<% end %>
|
||
|
]
|