📄 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>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>
</div>
<table class="query_form_table">
<tr>
<th>
编号
</th>
<td>${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}<br>
</td>
</tr>
<tr>
<th>
创建人
</th>
<td>${serviceForm.service.svrCreateBy}</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}</td>
<th>
分配时间
</th>
<td>${serviceForm.service.svrDueDate}</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table1">
<tr>
<th>
服务处理
</th>
<td colspan="3">${serviceForm.service.svrDeal}</td>
</tr>
<tr>
<th>
处理人
</th>
<td>${serviceForm.service.svrDealBy}</td>
<th>
处理时间
</th>
<td>${serviceForm.service.svrDealDate}</td>
</tr>
</table>
<br />
<table class="query_form_table" id="table2">
<tr>
<th>
处理结果
</th>
<td>${serviceForm.service.svrResult}</td>
<th>
满意度
</th>
<td>
<input type="hidden" name="svrSatisfy" value="${serviceForm.service.svrSatisfy}"/>
<logic:equal name="list" property="svrSatisfy" value="5">
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
</logic:equal>
<logic:equal name="list" property="svrSatisfy" value="4">
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
</logic:equal>
<logic:equal name="list" property="svrSatisfy" value="3">
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
</logic:equal>
<logic:equal name="list" property="svrSatisfy" value="2">
<img src="../../images/star.jpg" class="star_pic" />
<img src="../../images/star.jpg" class="star_pic" />
</logic:equal>
<logic:equal name="list" property="svrSatisfy" value="1">
<img src="../../images/star.jpg" class="star_pic" />
</logic:equal>
</td>
</tr>
</table>
</html:form>
<script>
function help(msg){
alert('欢迎使用'+msg);
}
function back(){
history.go(-1);
}
</script>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -