📄 guidancelist.jsp
字号:
<%@ page language="java" pageEncoding="gbk"%>
<%@ 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" %>
<jsp:directive.page import="com.crm.common.CommUtil"/>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="<%=basePath %>"/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>所有客服记录列表</title>
<link href="<%=basePath %>skin/default/default.css" rel="stylesheet" type="text/css" />
<script src="<%=basePath %>js/util.js" language="javascript" type="text/javascript"></script>
</head>
<body class="mainbody">
<table width="100%" border="0" cellspacing="2" cellpadding="0">
<tr>
<td class="tdgriud">首页 >> 客服管理 >> 客服指导列表</td>
<td class="tdgriud" align="right">
<html:link action="/manage/custserv?paramtype=initinsert" target="mainframe"></html:link></td>
</tr>
</table>
<fieldset>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="querytable">
<html:form action="manage/custserv">
<html:hidden property="paramtype"/>
<html:hidden property="service_type"/>
<tr>
<td align="right">客户姓名:</td>
<td><html:text property="cust_name"/></td>
<td align="right">接诉人员:</td>
<td><html:text property="employee_name"/></td>
</tr>
<tr>
<td align="right">开始日期:</td>
<td><html:text property="start_date"/>
<a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.all.item('start_date'));return false;">
<html:img align="absmiddle" page="/include/calendar/calbtn.gif" width="34" height="22" border="0" alt=""/>
</a>
</td>
<td align="right">结束日期:</td>
<td><html:text property="end_date"/>
<a href="javascript:void(0)" onclick="if(self.gfPop)gfPop.fPopCalendar(document.all.item('end_date'));return false;">
<html:img align="absmiddle" page="/include/calendar/calbtn.gif" width="34" height="22" border="0" alt=""/>
</a>
</td>
</tr>
<tr>
<td colspan="4" align="center"><input type="submit" name="Submit" class="btn_save" value="查 询" /></td>
</tr>
</html:form>
</table>
</fieldset>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="tdborder">
<tr>
<td width="6%" class="tdtitle">客户姓名</td>
<td width="6%" class="tdtitle">接诉员工</td>
<td width="20%" class="tdtitle">客服记录</td>
<td width="10%" class="tdtitle">录音文件</td>
<td width="14%" class="tdtitle">客服时间</td>
<td width="20%" class="tdtitle">指导信息</td>
<td width="8%" class="tdtitle">指导老师</td>
<td width="14%" class="tdtitle">指导时间</td>
</tr>
<logic:notEmpty name="guidancelist">
<logic:iterate id="custserv" name="guidancelist" indexId="index">
<tr onmouseover="TdMouseOver(this);" onmouseout="TdMouseOver(this);">
<td class="tdbg"><bean:write name="custserv" property="cust_name" /></td>
<td class="tdbg"><bean:write name="custserv" property="employee_name" /></td>
<td class="tdbg"><bean:write name="custserv" property="content" /></td>
<td class="tdbg">
<html:link page="/upload/${custserv.file_name}">
<bean:write name="custserv" property="file_name" />
</html:link>
</td>
<td class="tdbg"><bean:write name="custserv" property="create_date" /></td>
<td class="tdbg">
<logic:notEmpty name="custserv" property="guidance_date">
<html:link action="/manage/guidance?paramtype=initinsert&complaint_id=${custserv.complaint_id}&service_type=${param.service_type}">
<bean:write name="custserv" property="guidance_content" />
</html:link>
</logic:notEmpty>
<logic:empty name="custserv" property="guidance_date">
<html:link action="/manage/guidance?paramtype=initinsert&complaint_id=${custserv.complaint_id}&service_type=${param.service_type}">
<%
if(CommUtil.hasRight(session,"30101")&&"1".equals(request.getParameter("service_type"))){
%> 增加客服指导信息
<%} %>
<%
if(CommUtil.hasRight(session,"30201")&&"2".equals(request.getParameter("service_type"))){
%> 增加客服指导信息
<%} %>
</html:link>
</logic:empty>
</td>
<td class="tdbg"><bean:write name="custserv" property="guidance_teacher" /> </td>
<td class="tdbg"><bean:write name="custserv" property="guidance_date" /> </td>
</tr>
</logic:iterate>
</logic:notEmpty>
</table>
<logic:present name="pagetool">
<bean:write name="pagetool" filter="false"/>
</logic:present>
<iframe width="174" height="189" name="gToday:normal:agenda.js" id="gToday:normal:agenda.js" src="<%=path%>/include/calendar/ipopeng.htm" scrolling="no" frameborder="0" style="visibility:visible; z-index:999; position:absolute; top:-500px; left:-500px;">
</iframe>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -