64 lines
2.8 KiB
Plaintext
64 lines
2.8 KiB
Plaintext
@model NavigatorBarModel
|
|
@{
|
|
ViewBag.Title = "菜单管理";
|
|
Layout = "~/Views/Shared/_Default.cshtml";
|
|
}
|
|
@section Javascript {
|
|
<script src="~/scripts/Menus.js"></script>
|
|
}
|
|
@section header {
|
|
@Html.Partial("Header", Model)
|
|
}
|
|
@section navigator {
|
|
@Html.Partial("Navigator", Model)
|
|
}
|
|
@section query {
|
|
<form class="form-inline" role="form">
|
|
<div class="form-group col-lg-5">
|
|
<label class="control-label" for="txt_menus_name">菜单名称</label>
|
|
<input type="text" class="form-control" id="txt_menus_name" />
|
|
</div>
|
|
<div class="form-group col-lg-5">
|
|
<label class="control-label" for="txt_menus_category">菜单类别</label>
|
|
<input type="text" class="form-control" id="txt_menus_category" />
|
|
</div>
|
|
<div class="form-group col-lg-2">
|
|
<button type="button" id="btn_query" class="btn btn-primary"><span class="glyphicon glyphicon-search" aria-hidden="true"></span>查询</button>
|
|
</div>
|
|
</form>
|
|
}
|
|
@section modal {
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title" id="myModalLabel">用户编辑窗口</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<form class="form-inline" id="dataForm" name="dataForm" role="form">
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="parentId">父级ID</label>
|
|
<input type="text" class="form-control" id="parentId" name="parentId" maxlength="50" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="name">菜单名称</label>
|
|
<input type="text" class="form-control" id="name" name="name" maxlength="50" />
|
|
<input type="text" class="form-control hide" id="menuID" name="menuID" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="order">菜单序号</label>
|
|
<input type="text" class="form-control" id="order" name="order" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="icon">菜单图标</label>
|
|
<input type="text" class="form-control" id="icon" name="icon" maxlength="50" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="url">路径</label>
|
|
<input type="text" class="form-control" id="url" name="url" maxlength="50" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="category">类别</label>
|
|
<input type="text" class="form-control" id="category" name="category" maxlength="50" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
} |