You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
4.2 KiB
107 lines
4.2 KiB
<%
|
|
/***************************************************************
|
|
* <p>ProName:MainManagerInput.jsp</p>
|
|
* <p>Title:查询客户经理</p>
|
|
* <p>Description:查询客户经理</p>
|
|
* <p>Copyright:Copyright (c) 2012</p>
|
|
* <p>Company:Sinosoft</p>
|
|
* @author : 蔡云聪
|
|
* @version : 8.0
|
|
* @date : 2014-07-31
|
|
****************************************************************/
|
|
%>
|
|
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
|
|
<%@include file="../common/jsp/UsrCheck.jsp"%>
|
|
<%@page import="com.sinosoft.lis.pubfun.DateUtil"%>
|
|
<%
|
|
GlobalInput tGI = (GlobalInput)session.getAttribute("GI");
|
|
String tCurrentDate= DateUtil.getCurrentDate();
|
|
String tOperator = tGI.Operator;
|
|
String tManageCom = tGI.ManageCom;
|
|
|
|
%>
|
|
<script>
|
|
var tOperator = "<%=tOperator%>";//当前登录人
|
|
var tManageCom = "<%=tManageCom%>";//登录机构
|
|
var tCurrentDate = "<%=tCurrentDate%>";
|
|
</script>
|
|
<html>
|
|
<head>
|
|
<%--<title>客户经理查询</title>--%><title>LIS</title>
|
|
<script src="../common/javascript/Common.js"></script>
|
|
<script src="../common/cvar/CCodeOperate.js"></script>
|
|
<script src="../common/javascript/MulLine.js"></script>
|
|
<script src="../common/javascript/EasyQuery.js"></script>
|
|
<script src="../common/easyQueryVer3/EasyQueryVer3.js"></script>
|
|
<script src="../common/easyQueryVer3/EasyQueryCache.js"></script>
|
|
<script src="../common/javascript/VerifyInput.js"></script>
|
|
<SCRIPT src="../common/laydate/laydate.js"></SCRIPT>
|
|
<link href="../common/css/Project.css" rel=stylesheet type=text/css>
|
|
<link href="../common/css/mulLine.css" rel=stylesheet type=text/css>
|
|
<script src="./MainManagerQueryInput.js"></script>
|
|
<%@include file="./MainManagerQueryInit.jsp"%>
|
|
<script src="../common/javascript/i18n/jquery.i18n.js"></script>
|
|
<script src="../common/javascript/i18n/jquery.i18n.messagestore.js"></script>
|
|
<script src="../common/javascript/i18n/i18n.js"></script>
|
|
</head>
|
|
<body onload="initForm(); initElementtype();">
|
|
<%-- 查询条件 --%>
|
|
<form name=fm id=fm method=post action="" target=fraSubmit>
|
|
<table>
|
|
<tr>
|
|
<td class=common>
|
|
<img src="../common/images/butExpand.gif" style="cursor:hand;" onclick="showPage(this, divInfo1);">
|
|
</td>
|
|
<td class=titleImg data-i18n="ClientManagerEnquirySrchgCrite">客户经理查询条件</td>
|
|
</tr>
|
|
</table>
|
|
<div id="divInfo1" class=maxbox1 style="display: ''">
|
|
<table class=common>
|
|
<tr class=common>
|
|
<td class=title data-i18n="ClientManagerName-1">客户经理名称</td>
|
|
<td class=input><input class="common" id=CustomerName name=CustomerName></td>
|
|
<td class=title></td>
|
|
<td class=input></td>
|
|
<td class=title></td>
|
|
<td class=input></td>
|
|
</tr>
|
|
</table>
|
|
<%--testng测试,增加 id 和 name--%>
|
|
<input class=cssButton type=button id="query" name="query" value="查 询" data-i18n="Enquiry-2" onclick="queryManager();">
|
|
<input class=cssButton type=button id="chose" name="chose" value="选 择" data-i18n="Select-3" onclick="returnManager();">
|
|
</div>
|
|
|
|
<table>
|
|
<tr>
|
|
<td class=common>
|
|
<img src="../common/images/butExpand.gif" style="cursor:hand;" onclick="showPage(this, divResult1);">
|
|
</td>
|
|
<td class=titleImg data-i18n="ClientManagerInfoList">客户经理信息列表</td>
|
|
</tr>
|
|
</table>
|
|
<div id="divResult1" style="display: ''">
|
|
<table class=common>
|
|
<tr class=common>
|
|
<td text-align: left colSpan=1>
|
|
<span id="spanManagerGrid"></span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<center>
|
|
<input class=cssButton90 type=button value="首 页" data-i18n="FirstPage" onclick="turnPage1.firstPage();">
|
|
<input class=cssButton91 type=button value="上一页" data-i18n="PreviousPage" onclick="turnPage1.previousPage();">
|
|
<input class=cssButton92 type=button value="下一页" data-i18n="NextPage" onclick="turnPage1.nextPage();">
|
|
<input class=cssButton93 type=button value="尾 页" data-i18n="LastPage" onclick="turnPage1.lastPage();">
|
|
</center>
|
|
</div>
|
|
<input class="displayNone" name=Operate>
|
|
</form>
|
|
<form name=fmPub id=fmPub method=post action="" target=fraSubmit>
|
|
<div style="display: none">
|
|
<input class="displayNone" name=Operate>
|
|
</div>
|
|
</form>
|
|
<br /><br /><br /><br />
|
|
<span id="spanCode" style="display: none; position:absolute; slategray"></span>
|
|
</body>
|
|
</html>
|
|
|