⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 feedback_detail.jsp

📁 主要实现管理客户以及客户信息和其公司的服务管理
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>


<!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()%>/html/css/style.css" rel="stylesheet" type="text/css">
<script src="<%=request.getContextPath()%>/html/script/common.js"></script>
<script src="<%=request.getContextPath() %>/html/script/validate.js"></script>
<script type="text/javascript">
function doDeal(obj){
	if (Validator.Validate(document.forms[obj],3)) {
	var id = document.forms[obj].elements['sid'].value;
	 document.forms[obj].action="<%=request.getContextPath() %>/service.do?method=doDealResult&sid="+id;
	  			document.forms[obj].submit();
	  			}
}
</script>
</head>
<body>

<div class="page_title">客户服务管理 &gt; 服务处理</div>
<div class="button_bar">
	<button class="common_button" onclick="help('');">帮助</button>
	<button class="common_button" onclick="back();">返回</button> 
	<button class="common_button" onclick="doDeal('resultForm');">保存</button>  
</div>
<table class="query_form_table">
	<tr>
		<th>编号</th>
		<td>${service.serviceId }</td>
		<th>服务类型</th>
		<td>
			${service.serviceTypeId.baseName }</td>
	</tr>
	<tr>
		<th>概要</th>
		<td colspan="3">${service.serviceSummary }</td>
	</tr>	
	<tr>
		<th>客户</th>
		<td>${service.customersName }</td>
		<th>状态</th>
		<td>已处理</td>
	</tr>	
	<tr>
		<th>服务请求</th>
		<td colspan="3">${service.serviceRequest }<br>
 </td>
	</tr>
	<tr>
		<th>创建人</th>
		<td>${service.userInfoByCreaterId.userName }</td>
		<th>创建时间</th>
		<td>${service.createrDatetime }</td>
	</tr>
	</table>
<br />
<table class="query_form_table" id="table3">
	<tr>
		<th>分配给</th>
		<td>
			${service.userInfoByServiceAssignId.userName }</td>
		<th>分配时间</th>
		<td>${service.serviceDatetime }</td>
	</tr>
</table>
<br />	
<table class="query_form_table" id="table1">
 <c:forEach items="${deallist}" var="deal">
	<tr>
		<th>服务处理</th>
		<td colspan="3">
		 ${deal.dealMethod }
		</td>
	</tr>
	<tr>
		<th>处理人</th>
		<td>${deal.userInfo.userName }</td>
		<th>处理时间</th>
		<td>${deal.managerDatetime }</td>
	</tr>
	 </c:forEach>
</table>
<br />
<html:form action="/service" method="post" styleId="resultForm">
<input type="hidden" name="sid" value="${service.serviceId }"/>
<table  class="query_form_table" id="table2">
	<tr>
		<th>处理结果</th>
		<td><html:text property="serviceCondition.serviceResult" size="20"/><span class="red_star">*</span></td>
		<th>满意度</th>
		<td>
		<html:select property="serviceCondition.manyidu">
				<html:option value="0">请选择...</html:option>
				<html:option value="5">☆☆☆☆☆</html:option>
				<html:option value="4">☆☆☆☆</html:option>
				<html:option value="3">☆☆☆</html:option>
				<html:option value="2">☆☆</html:option>
				<html:option value="1">☆</html:option>
		</html:select><span class="red_star">*</span></td>
	</tr>
</table>
		  <script>
	  	build_validate("serviceCondition.serviceResult","处理结果不能为空","Limit","1","50");
	  </script>
</html:form>
<script>
	setCurTime('t3');
</script>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -