zoukankan      html  css  js  c++  java
  • 还款提醒函双向表格

    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <#setting datetime_format="yyyy-MM-dd"/>
    <title>房贷展期-信息咨询及管理服务补充协议</title>
    <style>
    @page {size:8.27in 11.69in; }

    .center {
    text-align: center;
    }
    .font_9{
    font-size:9pt;
    }


    table td {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    height: 15px;
    font-size: 9pt;
    padding: 2px;

    }

    .table3 {
    40%;
    border-top: 2px solid #000;
    border-right: 1px solid #000;
    border-left: 2px solid #000;
    border-bottom: 1px solid #000;
    margin: auto;
    table-layout: fixed;

    }

    .underline{
    border-bottom:1px solid #000;
    font-weight:bolder;
    display:inline;
    }

    h4{margin:10px 0 10px 0;font-weight: bold}
    .space{padding-left:30px;}

    </style>
    </head>
    <body style="font-family:'SimSun'">

    <div class="top10 " style="text-align:center;">
    <h4 style="text-align: left;">&nbsp;&nbsp;&nbsp;&nbsp;11、您的还款分期表如下:</h4>
    <table class="table3 center" cellspacing="0px" style="table-layout:fixed; word-break:break-strict;">
    <tbody>
    <tr>
    <td style="1px;" class="font_9">期数</td>
    <td style="30px;" class="font_9">还款日期</td>
    <td style="30px;" class="font_9">应还款额</td>
    <td style="58px;" class="font_9">当期一次还款金额</td>
    <td style="1px;" class="font_9">期数</td>
    <td style="30px;" class="font_9">还款日期</td>
    <td style="30px;" class="font_9">应还款额</td>
    <td style="58px;" class="font_9">当期一次还款金额</td>

    </tr>
    <tr align="center">
    <#list dataMap.repaymentPlan as map>
    <#if map_index %2 == 0>
    </tr>
    <tr align="center">
    </#if>
    <td class ="table, td">${map.repaymentStage}</td>
    <td class ="table, td">${map.repaymentDay} </td>
    <td class ="table, td">${map.repaymentAmount}</td>
    <td class ="table, td">${map.repaymentAmountOnce}</td>
    </#list>
    </tr>
    </tbody>
    </table>
    </div>
    <div style="font-weight: 800">
    <p>本人已仔细阅读并充分理解以上内容。</p>
    <div style="margin-left:59%;" >
    <p>借款人(签章): </p>
    <p>签署日期:<span class="underline"> ${dataMap.repaymentCurrentDay} </span></p>
    </div>
    </div>
    </body>
    </html>

  • 相关阅读:
    线性表的各种基本操作
    malloc&&free的系统运行机制及其源代码的理解
    剪枝的定义&&hdu1010
    hdu 1045
    hdu2094 stl之set的应用
    关联式容器的总结
    STL之map容器的详解
    2018-2019 ACM-ICPC 焦作赛区 部分题解
    2018-2019 ACM-ICPC 沈阳赛区 K. Let the Flames Begin
    2018-2019 ACM-ICPC 徐州区域赛 部分题解
  • 原文地址:https://www.cnblogs.com/yy123/p/7149333.html
Copyright © 2011-2022 走看看