etms/WEB-INF/view/cetc54/train/uptrain/person_edit.ftl
liyuchen c24bea2687 Initial commit: JCDP 教育培训管理系统 v54
- 系统管理模块(用户/角色/组织/权限/日志)
- 教育培训计划管理模块
- 教育培训实施模块
- 考试管理模块
- 调研问卷管理模块
- 外派培训管理模块
- 年度培训总结模块
- 学习资源管理模块
- 任职资格管理模块
- 即时通讯模块
- APP 版本管理
- 统计分析模块(FineReport)
- 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md)
- 项目开发指南(PROJECT_GUIDE.md)
2026-04-16 16:41:34 +08:00

62 lines
2.4 KiB
Plaintext

<div class="ui_dialog" id="comdialog">
<form id="comgrid_form" enctype="multipart/form-data" method="post">
</form>
</div>
<script id="comgrid_form_temp" type="text/html">
<input type="hidden" id="obhdID" value="{{id}}"/>
<input type="hidden" id="deptcode" name="deptcode" value="{{deptcode}}"/>
<div class="formTitle"><span class="icon icon_menu"></span>人员详情</div>
<table class="fromTable">
<tr>
<th>姓名
</th>
<td>
<select id="name" name="name" value="{{name}}"
ui-config="required:true,tipMessage:'请输入姓名或工资号搜索',validType:'length[1,255]',width:350,panelHeight:180,valueField:'show',textField:'show'">
</select>
</td>
</tr>
<tr id="codetr">
<th>工资号
</th>
<td>
<select id="code" name="code" value="{{code}}"
ui-config="required:true,tipMessage:'请输入姓名或工资号搜索',validType:'length[1,255]',width:350,panelHeight:180,valueField:'id',textField:'show'">
</select>
</td>
</tr>
<tr id="deptnametr">
<th>部门名称
</th>
<td>
<input id="deptname" name="deptname" class="ui_validate" type="text"
ui-config="required:true,width:350,validType:'length[1,255]'" value="{{deptname}}"/>
</td>
</tr>
<tr>
<th>职级
</th>
<td>
<input id="title" name="title" class="ui_validate" type="text"
ui-config="required:true,dictKey:'train_title',width:350,validType:'length[1,255]'" value="{{title}}"/>
</td>
</tr>
<tr>
<th>职务
</th>
<td>
<input id="duty" name="duty" class="ui_validate" type="text"
ui-config="required:true,width:350,validType:'length[1,255]'" value="{{duty}}"/>
</td>
</tr>
<tr>
<th>联系电话
</th>
<td>
<input id="phonenumber" name="phonenumber" class="ui_validate" type="text"
ui-config="required:false,width:350,validType:'length[1,255]'" value="{{phonenumber}}"/>
</td>
</tr>
</table>
</script>