52 lines
2.2 KiB
Plaintext
52 lines
2.2 KiB
Plaintext
@model NavigatorBarModel
|
|
@{
|
|
ViewBag.Title = "字典表管理";
|
|
Layout = "~/Views/Shared/_Default.cshtml";
|
|
}
|
|
@section Javascript {
|
|
<script src="~/scripts/Dicts.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_dict_name">字典名称</label>
|
|
<input type="text" class="form-control" id="txt_dict_name" />
|
|
</div>
|
|
<div class="form-group col-lg-5">
|
|
<label class="control-label" for="txt_dict_cate">字典种类</label>
|
|
<input type="text" class="form-control" id="txt_dict_cate" />
|
|
</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="dictCate">字典种类</label>
|
|
<input type="text" class="form-control" id="dictCate" name="dictCate" maxlength="50" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="dictName">字典名称</label>
|
|
<input type="text" class="form-control" id="dictName" name="dictName" maxlength="50" />
|
|
<input type="text" class="form-control hide" id="dictID" name="dictID" />
|
|
</div>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="dictCode">字典代码</label>
|
|
<input type="text" class="form-control" id="dictCode" name="dictCode" maxlength="50" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
} |