68 lines
3.1 KiB
Plaintext
68 lines
3.1 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 hide" id="txt_dict_cate" />
|
|
<div class="btn-group">
|
|
<button type="button" class="btn btn-default">未选择</button>
|
|
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
|
|
<span class="caret"></span>
|
|
<span class="sr-only">下拉按钮</span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li><a href="#" data-val="">未选择</a></li>
|
|
<li><a href="#" data-val="1">自定义</a></li>
|
|
<li><a href="#" data-val="0">系统使用</a></li>
|
|
</ul>
|
|
</div>
|
|
</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>
|
|
<div class="form-group col-lg-6">
|
|
<label class="control-label" for="dictDefine">字典类别</label>
|
|
<input type="text" class="form-control" id="dictDefine" name="dictDefine" maxlength="50" />
|
|
</div>
|
|
</form>
|
|
</div>
|
|
} |