后台增加排序
model.AdviseValue = list.OrderBy(tmp=>tmp.ConfigType).ToList();
<table class="tableList">
<tr>
<th>类别</th>
<th>物品名称</th>
<th>备注</th>
</tr>
@{
var listType = new List<string>();
}
@foreach (var item in Model.AdviseValue)
{
int typeIndex = Model.AdviseValue.Count(tmp => tmp.ConfigType == item.ConfigType);
<tr>
@if (!listType.Contains(item.ConfigType))
{
listType.Add(item.ConfigType);
<td style="width: 85px" rowspan="@typeIndex">@item.ConfigType</td>
}
<td style="width: 160px">@item.ConfigName</td>
<td style="text-align: left;">@item.ConfigRemark</td>
</tr>
}
</table>