@{
ViewBag.Title = "Add";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@model SJCRM.Models.Department
<div>
<div>
<div>
<h3>编辑</h3>
</div>
<div>
@using (Html.BeginForm())
{
<dl>
<dd>部门名称:</dd>
<dd>
<input type="text" datatype="*" nullmsg="请输入产品名称" value="@Model.DepartmentName" />
</dd>
</dl>
<dl>
<dd>是否销售:</dd>
<dd>
@UIHelper.IsSelect("IsSale", @Model.IsSale.ToString());
</dd>
</dl>
<dl>
<dd>
<input type="submit" value="提 交" />
</dd>
</dl>
}
</div>
</div>
</div>
<script>
//菜单显示
$("#systemusersys").addClass("hbg");
$("");
$("");
$(".systemusersys").each(function (index, item) {
$(this).show();
});
</script>
Search.cshtml
复制代码 代码如下: