?? deal_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" %>
<%@ 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">
客戶服務管理 > 服務處理
</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 + -