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