查询和分页动态绑定

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="/struts-tags" prefix="s"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<TITLE>客户列表</TITLE>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<LINK href="${pageContext.request.contextPath }/css/Style.css" type=text/css rel=stylesheet>
<LINK href="${pageContext.request.contextPath }/css/Manage.css" type=text/css
    rel=stylesheet>
<script type="text/javascript" src="${pageContext.request.contextPath }/js/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
    function gotoPage(page){
        var totalPage="${pageBean.totalPage}";
        if(page>=1 && page<=totalPage){
            $("#pageNum").val(page);
            $("#customerForm").submit();
        }
    };
</script>

<META content="MSHTML 6.00.2900.3492" name=GENERATOR>
</HEAD>
<BODY>
    <s:debug></s:debug>
    <FORM id="customerForm" name="customerForm"
        action="${pageContext.request.contextPath }/customer_listByCondition"
        method=post>
        
        <input id="pageNum" type="hidden" name="PageNum" value="1">
        
        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_019.jpg"
                        border=0></TD>
                    <TD width="100%" background="${pageContext.request.contextPath }/images/new_020.jpg"
                        height=20></TD>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_021.jpg"
                        border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15 background=${pageContext.request.contextPath }/images/new_022.jpg><IMG
                        src="${pageContext.request.contextPath }/images/new_022.jpg" border=0></TD>
                    <TD vAlign=top width="100%" bgColor=#ffffff>
                        <TABLE cellSpacing=0 cellPadding=5 width="100%" border=0>
                            <TR>
                                <TD class="manageHead">当前位置:客户管理 &gt; 客户列表</TD>
                            </TR>
                            <TR>
                                <TD height=2></TD>
                            </TR>
                        </TABLE>
                        <TABLE borderColor=#cccccc cellSpacing=0 cellPadding=0
                            width="100%" align=center border=0>
                            <TBODY>
                                <TR>
                                    <TD height=25>
                                        <TABLE cellSpacing=0 cellPadding=2 border=0>
                                            <TBODY>
                                                <TR>
                                                    <TD>客户名称:</TD>
                                                    <TD><INPUT class="textbox" id=sChannel2 value="${cust_name }"
                                                        style="WIDTH: 80px" maxLength=50 name="cust_name"></TD>
                                                    
                                                    <TD><INPUT class="button" id=sButton2 type=submit
                                                        value=" 筛选 " name=sButton2></TD>
                                                </TR>
                                            </TBODY>
                                        </TABLE>
                                    </TD>
                                </TR>
                                
                                <TR>
                                    <TD>
                                        <TABLE id=grid
                                            style="BORDER-TOP-WIDTH: 0px; FONT-WEIGHT: normal; BORDER-LEFT-WIDTH: 0px; BORDER-LEFT-COLOR: #cccccc; BORDER-BOTTOM-WIDTH: 0px; BORDER-BOTTOM-COLOR: #cccccc; WIDTH: 100%; BORDER-TOP-COLOR: #cccccc; FONT-STYLE: normal; BORDER-RIGHT-WIDTH: 0px; TEXT-DECORATION: none; BORDER-RIGHT-COLOR: #cccccc"
                                            cellSpacing=1 cellPadding=2 rules=all border=0>
                                            <TBODY>
                                                <TR
                                                    style="FONT-WEIGHT: bold; FONT-STYLE: normal; TEXT-DECORATION: none">
                                                    <TD>客户名称</TD>
                                                    <TD>客户级别</TD>
                                                    <TD>客户来源</TD>
                                                    <TD>所属行业</TD>
                                                    <TD>电话</TD>
                                                    <TD>手机</TD>
                                                    <TD>操作</TD>
                                                </TR>
                                                <c:forEach var="customer" items="${pageBean.pageList }">
                                                    <TR
                                                        style="FONT-WEIGHT: normal; FONT-STYLE: normal; TEXT-DECORATION: none">
                                                        <TD>${customer.cust_name }</TD>
                                                        <TD>${customer.level.dict_item_name }</TD>
                                                        <TD>${customer.source.dict_item_name }</TD>
                                                        <TD>${customer.industry.dict_item_name }</TD>
                                                        <TD>${customer.cust_phone }</TD>
                                                        <TD>${customer.cust_mobile }</TD>
                                                        <TD>
                                                        <a href="${pageContext.request.contextPath }/customer_update2UI?cust_id=${customer.cust_id}">修改</a>
                                                        &nbsp;&nbsp;
                                                        <a href="#">删除</a>
                                                        </TD>
                                                    </TR>
                                                </c:forEach>
                                                

                                            </TBODY>
                                        </TABLE>
                                    </TD>
                                </TR>
                                
                                <TR>
                                    <TD><SPAN id=pagelink>
                                            <DIV style="LINE-HEIGHT: 20px; HEIGHT: 20px; TEXT-ALIGN: right">
                                                共[<B>${pageBean.totalCount }</B>]条记录,共[<B>${pageBean.totalPage }</B>]页,
                                                当前页:[${pageBean.pageNum }]
                                                
                                                
                                                [<A href="javascript:;" onclick="gotoPage('${pageBean.pageNum+1 }')">前一页</A>]
                                                
                                                <c:forEach var="page" begin="1" end="${pageBean.totalPage }">
                                                    <a href="javascript:;" onclick="gotoPage('${page}')">${page }</a>
                                                </c:forEach>
                                                [<A href="javascript:;" onclick="gotoPage('${pageBean.pageNum-1 }')">后一页</A>]
                                                
                                            </DIV>
                                    </SPAN></TD>
                                </TR>
                            </TBODY>
                        </TABLE>
                    </TD>
                    <TD width=15 background="${pageContext.request.contextPath }/images/new_023.jpg"><IMG
                        src="${pageContext.request.contextPath }/images/new_023.jpg" border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
        <TABLE cellSpacing=0 cellPadding=0 width="98%" border=0>
            <TBODY>
                <TR>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_024.jpg"
                        border=0></TD>
                    <TD align=middle width="100%"
                        background="${pageContext.request.contextPath }/images/new_025.jpg" height=15></TD>
                    <TD width=15><IMG src="${pageContext.request.contextPath }/images/new_026.jpg"
                        border=0></TD>
                </TR>
            </TBODY>
        </TABLE>
    </FORM>
</BODY>
</HTML>

posted @ 2017-08-28 21:36  缺氧的鱼520  阅读(108)  评论(0编辑  收藏  举报