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

📄 deal_detail.jsp

📁 关于ssh的整合,希望对大家有帮助
💻 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" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-template" prefix="template" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-nested" prefix="nested" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html locale="true">
  <head>
    <html:base />
    
    <title>deal_detail.jsp</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>
  </head>
  
  <body>
    <html:form action="/service" method="post">
        <div class="page_title">
			客户服务管理 &gt; 服务处理
		</div>
		<div class="button_bar">
			<button class="common_button" onclick="help('');">
				帮助
			</button>
			<button class="common_button" onclick="back();">
				返回
			</button>
			<input type="submit" class="common_button" value="保存" />
			<input type="hidden" name="flag" value="doupdate" />
		</div>
      <table border="0" 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">
					<textarea rows="6" cols="50" name="service.svrDeal"><bean:write name="serviceForm" property="service.svrDeal"/></textarea>
					<span class="red_star">*</span>
				</td>
			</tr>
			<tr>
				<th>
					处理人
				</th>
				<td>
					<input name="service.svrDealBy" value="刘颖" readonly size="20" />
					<input type="hidden" name="service.svrDealId" value="${serviceForm.service.svrDealId }"/>
					<span class="red_star">*</span>
				</td>
				<th>
					处理时间
				</th>
				<td>
					<input id="t3" name="svrDealDate" value="${serviceForm.service.svrDealDate }" readonly="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="service.svrResult" value="" size="20" />
					<span class="red_star">*</span>
				</td>
				<th>
					满意度
				</th>
				<td>
					<select name="service.svrSatisfy">
						<option>
							请选择...
						</option>
						<option>
							☆☆☆☆☆
						</option>
						<option>
							☆☆☆☆
						</option>
						<option>
							☆☆☆
						</option>
						<option>
							☆☆
						</option>
						<option>
						</option>
					</select>
					<span class="red_star">*</span>
				</td>
			</tr>
      </table>
    </html:form>
  </body>
      <script>
	  function back(){
	      history.go(-1);
          }
	  function setCurTime(oid){
	       var now=new Date();
	       var year=now.getYear();
	       var month=now.getMonth()+1;
	       var day=now.getDate();
	       var hours=now.getHours();
	       var minutes=now.getMinutes();
	       var seconds=now.getSeconds();
	       var timeString = year+"-"+month+"-"+day+" "+hours+":"+minutes+":"+seconds;
	       var oCtl = document.getElementById(oid);
	       oCtl.value = timeString;
          }
	  setCurTime('t3');
    </script>
</html:html>

⌨️ 快捷键说明

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