etms/WEB-INF/view/cetc54/parameter/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

39 lines
1.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="id" name="id" value="{{id}}"/>
<table class="fromTable">
<tr>
<th>所属类别:</th>
<td><select id="category" name="category" 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="name" name="name" class="ui_validate" type="text"
ui-config="required:true,tipAfterInput:true,width:400" value="{{name}}"/></td>
</tr>
<tr>
<th>键:</th>
<td><input id="keykey" name="keykey" class="ui_validate" type="text" value="{{keykey}}"
ui-config="required:true,width:400,panelWidth:400"/>
</td>
</tr>
<tr>
<th>值:</th>
<td><textarea id="value" name="value" class="ui_validate"
ui-config="tipAfterInput:true,width:400" >{{value}}</textarea></td>
</tr>
<tr>
<th>说明:</th>
<td><textarea id="note" name="note" class="ui_validate" style="width: 400px"
ui-config="tipAfterInput:true,width:400">{{note}}</textarea></td>
</tr>
</table>
</script>