


本系統采用B/S模式,主要實作的功能如下:
基礎資訊管理:該模塊主要是對企業型別、企業性質、客戶銀行、企業資信、客戶級別、客戶滿意程度、區域資訊的添加、修改、洗掉等,如編號、名稱等;
客戶資訊列印:該模塊的主要功能是客戶信封列印、資訊列印、聯系人資訊列印、省份郵編資訊列印;
客戶資訊管理:該模塊主要是客戶資訊管理、聯系人資訊管理、業務來往管理;
資訊查詢:該模塊的主要功能是客戶資訊查詢、聯系人資訊查詢、客戶反饋查詢、客戶投訴查詢;
客戶服務: 該模塊的主要功能是客戶反饋、客戶投訴、反饋滿意度分析、投訴滿意度分析;
系統管理:該模塊是管理員權限的設定、密碼修改等;
資料字典:
管理員資訊:說明、編號、名稱、密碼、型別;
企業型別:編號、名稱、備注、ID
企業資信:編號、級別、備注、ID
客戶級別資訊:編號、名稱、業務量、備注、ID
客戶滿意度:編號、滿意度、備注、ID
客戶資訊:編號、名稱、性質、型別、資信、地址、省份、城市、郵編、法人代表、銀行賬號、公司網址、公司電話
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="com.domain.CbankForm"%>
<%@ page import="java.sql.*"%>
<%@ page import="java.util.List"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>客戶銀行設定</title>
<style type="text/css">
<!--
body {
background-color: white;
margin-left: 0px;
margin-top: 0px;
}
.style1 {font-size: 11pt}
td{
font-size:9pt;
}
a{
font-size:9pt;
color:#0000ff;}
a:hover{
font-size:12px;
color:#990000;}
.style3 {font-size: 11pt}
-->
</style></head>
<script Language="JavaScript">
function projectDelete(date){
if(confirm("是否洗掉編號為["+date+"]這一組資料嗎?"))
window.location="cbankDelete.do?id="+date;
}
</script>
<body>
<table width="579" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td> </td>
</tr>
</table>
<table width="579" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF">
<table width="579" height="487" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="left" valign="top" bgcolor="#FFFFFF"><table width="579" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="2%" height="28"> </td>
<td width="9%" background="images/circle.jpg"> </td>
<td width="89%" bgcolor="#FFFFFF"><span class="style3">客戶銀行設定</span></td>
</tr>
<tr style="line-height:2px">
<td width="2%" height="5"> </td>
<td height="5" colspan="2" bgcolor="#D4D0C8"> </td>
</tr>
<tr align="center" valign="top" bgcolor="#FFFFFF">
<td height="454" colspan="3"><p>
<%List list=(List)request.getAttribute("banklist");%>
</p>
<p> </p>
<table width="500" border="0" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr align="center" bgcolor="#99CDFF">
<td width="100" height="24">銀行編號</td>
<td width="100">銀行名稱</td>
<td width="100">備注</td>
<td width="100">操作</td>
</tr>
<%for(int i=0;i<list.size();i++){
CbankForm form=(CbankForm)list.get(i);
%>
<tr bgcolor="#FFFFFF">
<td height="28"><%=form.getBank_id()%></td>
<td><%=form.getBank_name()%></td>
<td><%=form.getBank_bz()%></td>
<td align="center"><a href="cbankSelectOne.do?id=<%=form.getBank_id()%>">修改</a> <a href="javascript:projectDelete('<%=form.getBank_id()%>')">洗掉</a></td>
</tr>
<%}%>
</table>
<br>
<table width="500" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="431" align="right"> </td>
<td width="106" align="center"><a href="cbankCountID.do">添加銀行資訊</a></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/258744.html
標籤:其他
上一篇:Vue框架——事件系結
