📄 feedback_detail.jsp
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
prefix="logic"%>
<html:html locale="true">
<head>
<html:base />
<title>feedback_detail.jsp</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="../../css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<html:form action="/service" method="post">
<div class="page_title">
客户服务管理 > 服务处理
</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">
帮助
</button>
<button class="common_button" onclick="back();">
返回
</button>
<input type="submit" value="保存" class="common_button"/>
<input type="hidden" name="flag" value="upd"/>
</div>
<table class="query_form_table">
<tr>
<th>
编号
</th>
<td>${serviceForm.service.svrId }<input type="hidden" name="service.svrId" value="${serviceForm.service.svrId }"/></td>
<th>
服务类型
</th>
<td>${serviceForm.service.svrType }</td>
</tr>
<tr>
<th>
概要
</th>
<td colspan="3">${serviceForm.service.svrTitle }</td>
</tr>
<tr>
<th>
客户
</th>
<td>${serviceForm.service.svrCustName }</td>
<th>
状态
</th>
<td>${serviceForm.service.svrStatus }</td>
</tr>
<tr>
<th>
服务请求
</th>
<td colspan="3">${serviceForm.service.svrRequest }</td>
</tr>
<tr>
<th>
创建人
</th>
<td>${serviceForm.service.svrCreateBy }
<input type="hidden" name="service.svrCreateId" value="${serviceForm.service.svrCreateId }"/>
</td>
<th>
创建时间
</th>
<td>${serviceForm.service.svrCreateDate }</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table3">
<tr>
<th>
分配给
</th>
<td>${serviceForm.service.svrDueTo }
<input type="hidden" name="service.svrDueId" value="${serviceForm.service.svrDueId }"/>
</td>
<th>
分配时间
</th>
<td>${serviceForm.service.svrDueDate }</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table1">
<tr>
<th>
服务处理
</th>
<td colspan="3"><bean:write name="serviceForm" property="service.svrDeal"/>
<span class="red_star"></span>
</td>
</tr>
<tr>
<th>
处理人
</th>
<td>${serviceForm.service.svrDealBy }
<input type="hidden" name="service.svrDealId" value="${serviceForm.service.svrDealId }"/>
</td>
<th>
处理时间
</th>
<td>${serviceForm.service.svrDealDate }</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table2">
<tr>
<th>
处理结果
</th>
<td>
<input name="service.svrResult" value="${serviceForm.service.svrResult }" size="20" />
<span class="red_star">*</span>
</td>
<th>
满意度
</th>
<td>
<select name="service.svrSatisfy">
<option value="0">
请选择...
</option>
<option value="5">
☆☆☆☆☆
</option>
<option value="4">
☆☆☆☆
</option>
<option value="3">
☆☆☆
</option>
<option value="2">
☆☆
</option>
<option value="1">
☆
</option>
</select>
<span class="red_star">*</span>
</td>
</tr>
</table>
</html:form>
<script>
function back(){
history.go(-1);
}
function help(msg){
alert('欢迎使用'+msg);
}
</script>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -