Mini.Crm/Mini.Web/Areas/Admin/Views/BasParameterGroup/Details.cshtml

26 lines
743 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@model Air.Model.AirB2bDomain.Bas_ParameterGroupView
@{
ViewBag.Title = "Details";
Layout = "~/Areas/Admin/Views/Shared/_Index_Layout.cshtml";
}
<table class="fromEditTable setTextWidth300">
<tr></tr>
<tr>
<td style="width:100px;">分组ID</td>
<td>@Html.DisplayFor(model => model.GroupId)</td>
</tr>
<tr>
<td style="width:100px;">分组名:</td>
<td>@Html.DisplayFor(model => model.GroupName)</td>
</tr>
<tr>
<td style="width:100px;">创建时间:</td>
<td>@Html.DisplayFor(model => model.Ctime)</td>
</tr>
<tr>
<td style="width:100px;">创建名:</td>
<td>@Html.DisplayFor(model=>model.CreateUserName)</td>
</tr>
</table>