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

📄 deal_detail.jsp

📁 实现用户关系管理系统
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>
<%@page import="java.text.SimpleDateFormat"%>
<!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="css/style.css" rel="stylesheet" type="text/css">
<script src="script/common.js"></script>
<script type="text/javascript">
	function check(){
		document.form.submit();
	}
<%--	function showDate(){--%>
<%--				var time = new Date( ); //获得当前时间--%>
<%--			 	//获得年、月、日,Date()函数中的月份是从0-11计算--%>
<%--				var year = time.getYear();  --%>
<%--			 	var month = time.getMonth()+1;--%>
<%--			 	var date = time.getDate();--%>
<%--				document.getElementById("svrDealDate").innerHTML=year + "年" +month + "月" + date + "日";--%>
<%--				setTimeout('showDate()',1000);--%>
<%--			}--%>
</script>
</head>
<body>

<div class="page_title">客户服务管理 &gt; 服务处理</div>
<form action="cstService.do" name="form" method="post">
<input type="hidden" name="svrId1" value="${svrId1}">
<input type="hidden" name="oper" value="doDealDetial">
<div class="button_bar">
	<button class="common_button" onclick="help('');">帮助</button>
	<button class="common_button" onclick="back();">返回</button> 
	<button class="common_button" type="Submit" onclick="check()">保存</button>  
</div>
<table class="query_form_table">
	<tr>
		<th>编号</th>
		<td><input type="text" name="item.svrId" value="${cstService.svrId}"></td>
		<th>服务类型</th>
		<td>
			<input type="text" name="item.svrType" value="${cstService.svrType}"></td>
	</tr>
	<tr>
		<th>概要</th>
		<td colspan="3"><input type="text" name="service.svrTitle" value="${cstService.svrTitle}"></td>
	</tr>	
	<tr>
		<th>客户</th>
		<td><input type="text" name="item.svrCustName" value="${cstService.svrCustName}"></td>
		<th>状态</th>
		<td><input type="text" name="item.svrStatus" value="${cstService.svrStatus}"></td>
	</tr>	
	<tr>
		<th>服务请求</th>
		<td colspan="3"><input type="text" name="item.svrRequest" value="${cstService.svrRequest}"><br>
 </td>
	</tr>
	<tr>
		<th>创建人</th>
		<td><input type="text" name="item.svrCreateBy" value="${cstService.svrCreateBy}"></td>
		<th>创建时间</th>
		<td><input type="text" name="item.svrCreateDate" value="${cstService.svrCreateDate}"></td>
	</tr>
	</table>
<br />
<table class="query_form_table" id="table3">
	<tr>
		<th>分配给</th>
		<td>
			<input type="text" name="item.svrDueTo" value="${cstService.svrDueTo}"></td>
		<th>分配时间</th>
		<td><input type="text" name="item.svrDueDate" value="${cstService.svrDueDate}"></td>
	</tr>
</table>
<br />	
<table class="query_form_table" id="table1">
	<tr>
		<th>服务处理</th>
		<td colspan="3"><textarea rows="6" cols="50" name="item.svrDeal"></textarea><span class="red_star">*</span></td>
	</tr>
	<tr>
		<th>处理人</th>
		<td><input name="item.svrDealBy" value="${USER.usrName }" readonly size="20" /><span class="red_star">*</span></td>
		<th>处理时间</th>
		<td><input id="svrDealDate" name="item.svrDealDate" value="<%=new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(new Date()) %>" readonly size="20" /><span class="red_star">*</span></td>
	</tr>
</table>
<br />
<table disabled class="query_form_table" id="table2">
	<tr>
		<th>处理结果</th>
		<td><input name="t3" size="20" /><span class="red_star">*</span></td>
		<th>满意度</th>
		<td>
			<select name="t4" value="30">
				<option>请选择...</option>
				<option>☆☆☆☆☆</option>
				<option>☆☆☆☆</option>
				<option>☆☆☆</option>
				<option>☆☆</option>
				<option>☆</option>
			</select><span class="red_star">*</span></td>
	</tr>
</table>
<script>
	setCurTime('t3');
</script>
</body>
</html>

⌨️ 快捷键说明

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