📄 detail.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>jb-aptech毕业设计项目</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="<%=request.getContextPath()%>/css/style.css" rel="stylesheet" type="text/css">
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/engine.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/util.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/interface/Pager.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/dwr/interface/ClienService.js'></script>
<script type='text/javascript' src='<%=request.getContextPath()%>/js/s1.js'></script>
</head>
<script type="text/javascript">
function select()
{
var id=document.getElementById('select').value;
ClienService.doFind(id,function(data)
{
//alert(DWRUtil.toDescriptiveString(data,'chcId'));
dwr.util.setValues(data);
var ver = data.svrSatisfy;
if(ver==1){document.getElementById('star1').style.display = 'block';}
else if(ver==2){document.getElementById('star2').style.display = 'block';}
else if(ver==3){document.getElementById('star3').style.display = 'block';}
else if(ver==4){document.getElementById('star4').style.display = 'block';}
else if(ver==5){document.getElementById('star5').style.display = 'block';}
}
);
}
function back()
{
window.location.href='arch.jsp?pa='+$('pa0').value;
}
</script>
<body onload="select()">
<input type="hidden" value="${param.id}" id="select"/>
<input type="hidden" value="${param.pa}" id="pa0"/>
<input type="hidden" id="userFlag" value="${sessionScope.usrIdIndex}">
<div class="page_title">客户服务管理 > 服务归档</div>
<div class="button_bar">
<button class="common_button" onclick="helpq3();">帮助</button>
<button class="common_button" onclick="back();">返回</button>
</div>
<table class="query_form_table">
<tr>
<th>编号</th>
<td><span id="svrId" /></td>
<th>服务类型</th>
<td><span id="svrType" /></td>
</tr>
<tr>
<th>概要</th>
<td colspan="3"><span id="svrTitle" /></td>
</tr>
<tr>
<th>客户</th>
<td><span id="svrCustName" /></td>
<th>状态</th>
<td><span id="svrStatus" /></td>
</tr>
<tr>
<th>服务请求</th>
<td colspan="3"><span id="svrRequest" /><br>
</td>
</tr>
<tr>
<th>创建人</th>
<td><span id="svrCreateBy" /></td>
<th>创建时间</th>
<td><span id="createDate" /></td>
</tr>
</table>
<br />
<table class="query_form_table" id="table3">
<tr>
<th>分配给</th>
<td>
<span id="svrDueTo" /></td>
<th>分配时间</th>
<td><span id="dueDate" /></td>
</tr>
</table>
<br />
<table class="query_form_table" id="table1">
<tr>
<th>服务处理</th>
<td colspan="3"><span id="svrDeal" /></td>
</tr>
<tr>
<th>处理人</th>
<td><span id="svrDealBy" /></td>
<th>处理时间</th>
<td><span id="dealDate" /></td>
</tr>
</table>
<br />
<table class="query_form_table" id="table2">
<tr>
<th>处理结果</th>
<td><span id="svrResult" /></td>
<th>满意度</th>
<td>
<div id="star1" style="display:none">
<img src="images/star_s1.gif"/>
</div>
<div id="star2" style="display:none">
<img src="images/star_s2.gif"/>
</div>
<div id="star3" style="display:none">
<img src="images/star_s3.gif" />
</div>
<div id="star4" style="display:none">
<img src="images/star_s4.gif" />
</div>
<div id="star5" style="display:none">
<img src="images/star_s5.gif" />
</div>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -