2015-11-05 23:27:08 +08:00
|
|
|
|
|
|
|
|
|
@{
|
|
|
|
|
ViewBag.Title = "title";
|
|
|
|
|
Layout = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<div class="bjui-pageContent">
|
|
|
|
|
<form action="/OrgManager/AddOrg" class="pageForm" data-toggle="validate">
|
|
|
|
|
<table class="table table-condensed table-hover">
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
|
|
|
|
<td align="center"><h3>* 添加</h3></td>
|
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<label for="Name" class="control-label x90">机构名称:</label>
|
|
|
|
|
<input type="text" name="Name" id="Name" value=""
|
|
|
|
|
data-rule="required" size="20">
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
|
|
|
|
<input id="ParentId" name="ParentId" type="hidden">
|
|
|
|
|
<label for="ParentName" class="control-label x90">上级机构:</label>
|
|
|
|
|
<input type="text" name="ParentName" id="ParentName"
|
|
|
|
|
value="" data-toggle="lookup" data-url="/OrgManager/LookupParent">
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
2015-11-05 23:41:06 +08:00
|
|
|
|
<label for="Status" class="control-label x85">设置状态:</label>
|
|
|
|
|
|
|
|
|
|
<select name="Status" id="Status" data-toggle="selectpicker" data-rule="required">
|
|
|
|
|
<option value="0">正常</option>
|
|
|
|
|
<option value="1">禁用</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
2015-11-05 23:27:08 +08:00
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="bjui-pageFooter">
|
|
|
|
|
<ul>
|
|
|
|
|
<li><button type="button" class="btn-close">关闭</button></li>
|
|
|
|
|
<li><button type="submit" class="btn-green">保存</button></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|