@gongdans = Gongdan.group("department").where(:flag =>2).order(created_at: :desc)
分组后得到结果见下图
<table class="table table-striped table-hover ">
<thead>
<tr>
<th >部门</th>
<th >地区</th>
<th >累计服务次数</th>
<th >累计服务时间</th>
</tr>
</thead>
<tbody>
<% @gongdans.each do |g| %>
<tr >
<td >
<%= g.department %>
</td>
<td >
<%= g.area %>
</td>
<td >
<%= g.department.size %>
</td>
<td >
</td>
</tr>
<% end %>
</tbody>
</table>
求各路大神指点迷津!!!小女子在此先谢过!!!