- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
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> |