- 系统管理模块(用户/角色/组织/权限/日志) - 教育培训计划管理模块 - 教育培训实施模块 - 考试管理模块 - 调研问卷管理模块 - 外派培训管理模块 - 年度培训总结模块 - 学习资源管理模块 - 任职资格管理模块 - 即时通讯模块 - APP 版本管理 - 统计分析模块(FineReport) - 代码审查标准和报告(CODE_REVIEW_GUIDE.md, CODE_REVIEW_REPORT.md) - 项目开发指南(PROJECT_GUIDE.md)
78 lines
2.6 KiB
Plaintext
78 lines
2.6 KiB
Plaintext
<div class="ui_dialog" id="dialog">
|
||
<form id="grid_form" method="post">
|
||
</form>
|
||
</div>
|
||
<div class="ui_dialog" id="dialog_empty">
|
||
<img id="showPic" src="" >
|
||
</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>
|
||
<input id="username" name="" class="ui_validate" type="text"
|
||
ui-config="width:380" value="{{username}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>联系方式:
|
||
</th>
|
||
<td>
|
||
<input id="contact" name="" class="ui_validate" type="text"
|
||
ui-config="width:380" value="{{contact}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>评分:
|
||
</th>
|
||
<td>
|
||
<input id="stars" name="" class="ui_validate" type="text"
|
||
ui-config="required:true,width:380" value="{{stars}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>SessionID:
|
||
</th>
|
||
<td>
|
||
<input id="sessionid" name="" class="ui_validate" type="text"
|
||
ui-config="required:true,width:380" value="{{sessionid}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>反馈时间:
|
||
</th>
|
||
<td>
|
||
<input id="addtime" name="" class="ui_validate" type="text"
|
||
ui-config="required:true,width:380" value="{{addtime | dateTimeFilter}}"/>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<th>反馈内容:
|
||
</th>
|
||
<td>
|
||
<textarea cols="51" id="feedInfo" class="ui_validate" style="height: 100px;"
|
||
ui-config="">{{problem}}
|
||
</textarea>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
<div class="formTitle"><span class="icon icon_menu"></span>图片信息</div>
|
||
{{each imgs as value i}}
|
||
<img src="{{value}}" class="img-thumbnail" alt="" width="100" style="cursor:pointer;"
|
||
onclick="viewPic('{{value}}');">
|
||
{{/each}}
|
||
<div class="formTitle"><span class="icon icon_menu"></span>设备信息</div>
|
||
<table class="fromTable">
|
||
<tr>
|
||
<th>设备信息:</th>
|
||
<td>
|
||
<textarea cols="53" id="deviceInfo" class="ui_validate" style="height: 200px;"
|
||
ui-config="">
|
||
</textarea>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</script> |