59 lines
2.6 KiB
Plaintext
59 lines
2.6 KiB
Plaintext
|
|
<div class="ui_dialog" id="dialog">
|
||
|
|
<form id="grid_form" method="post">
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<script id="grid_form_temp" type="text/html">
|
||
|
|
<input type="hidden" id="hdID" value="{{id}}"/>
|
||
|
|
<div class="formTitle"><span class="icon icon_menu"></span>组织信息</div>
|
||
|
|
<table class="fromTable">
|
||
|
|
<tr>
|
||
|
|
<th>上级组织:</th>
|
||
|
|
<td><select id="parent_id" name="parent_id" class="ui_validate"
|
||
|
|
ui-config="required:true,editable:false,width:400,panelWidth:400,panelHeight:300"></select>
|
||
|
|
|
||
|
|
<div id="pn_panel">
|
||
|
|
<ul id="pn_tree" class="ztree"></ul>
|
||
|
|
</div>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>组织编码:</th>
|
||
|
|
<td><input id="code" name="code" class="ui_validate" type="text" style="width: 400px"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{code}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>组织名称:</th>
|
||
|
|
<td><input id="name" name="name" class="ui_validate" type="text" style="width: 400px"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{name}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>组织类型:</th>
|
||
|
|
<td><input id="orgtype" name="orgtype" class="ui_validate" type="text" class="ui_validate"
|
||
|
|
ui-config="required:true,width:400,dictKey:'orgtype'" value="{{orgtype}}"/>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>自动展开:</th>
|
||
|
|
<td><select id="is_auto_expand" name="is_auto_expand" class="ui_validate"
|
||
|
|
ui-config="required:true,tipAfterInput:true,width:400,dictKey:'istrue'" value="{{is_auto_expand}}">
|
||
|
|
</select></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>当前状态:</th>
|
||
|
|
<td><select id="status" name="status" class="ui_validate" type="text"
|
||
|
|
ui-config="required:true,tipAfterInput:true,width:400,dictKey:'isenable'" value="{{status}}">
|
||
|
|
</select>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>图标:</th>
|
||
|
|
<td><input id="icon_name" name="icon_name" class="ui_validate" type="text"
|
||
|
|
ui-config="required:false,tipAfterInput:true,width:400" value="{{icon_name}}"/></td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th>排序号:</th>
|
||
|
|
<td><input id="sort_no" name="sort_no" class="ui_validate" type="text" style="width: 400px"
|
||
|
|
ui-config="required:true,tipAfterInput:true" value="{{sort_no}}"/></td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</script>
|