etms/WEB-INF/view/etms/feedback/feedback_edit.ftl
liyuchen d9fba9a316 Remove organization references (de-identify)
- Replace CETC54 references with ETMS
- Replace com.cetc54 package with com.example
- Rename cetc54 directories to etms
- Replace CECT54.WebUI to ETMS.WebUI
- Replace organization names (中国电科54所 -> XX公司)
- Replace internal system URLs (cetc54.com -> example.com)
2026-04-16 17:14:56 +08:00

78 lines
2.6 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>