- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
<div class="ui_dialog" id="dialog">
|
|
<form id="grid_form" method="post" enctype="multipart/form-data">
|
|
</form>
|
|
</div>
|
|
<script id="grid_form_temp" type="text/html">
|
|
<div class="formTitle"><span class="icon icon_menu"></span>应用信息</div>
|
|
<input type="hidden" id="hdId" name="id" value="{{id}}"/>
|
|
<input type="hidden" id="hdPkgtype" name="pkgtype" value="{{pkgtype}}"/>
|
|
<input type="hidden" id="hdIslastversion" name="islastversion" value="{{islastversion}}"/>
|
|
<table class="fromTable">
|
|
<tr>
|
|
<th>标题:
|
|
</th>
|
|
<td><input id="name" name="name" class="ui_validate" type="text"
|
|
ui-config="required:true,width:400" value="{{name}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>版本:</th>
|
|
<td><input id="versionnumber" name="versionnumber" class="ui_validate" type="text"
|
|
ui-config="required:true,width:400" value="{{versionnumber}}"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th>安装包类型:</th>
|
|
<td><input id="isupdatepkg" name="isupdatepkg" class="ui_validate" type="text"
|
|
ui-config="required:true,width:402,dictKey:'isupdatepkg'" value="{{isupdatepkg}}"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>更新内容:</th>
|
|
<td><textarea id="txtRemark" name="remark" class="ui_validate" style="width: 398px"
|
|
ui-config="required:true,validType:'length[0,1000]',tipAfterInput:true">{{remark}}</textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>更新时间:</th>
|
|
<td>
|
|
<input id="publishdate" name="publishdate" ui-config="required:true,width:402,dateFmt:'yyyy-MM-dd HH:mm:ss'" value="{{publishdate |dateTimeFilter}}">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>上传应用:</th>
|
|
<td>
|
|
<input type="file" accept="" id="appFile" name="appFile" class="ui_validate"
|
|
ui-config="required:false,width:233,missingMessage: '请上传应用!'"/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</script> |