html , 对勾,警告,错误 三种情况
<td align="center">@if (item.Approved)
{ <font color="green"><b>@Html.Raw("√")</b></font>}
else
{ @Html.Raw(@"χ")}
</td>
<td align="center">@if (item.HasWarning)
{ <font color="#B5A642"><b>@Html.Raw("√")</b></font>}
else
{ @Html.Raw(@"χ")}
</td>
<td align="center">@if (item.HasError)
{ <font color="red"><b>@Html.Raw("√")</b></font>}
else
{ @Html.Raw(@"χ")}
</td>
版权声明
本文仅代表作者观点,不代表博信信息网立场。