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>

  • 相关阅读:
    C# 1.0 到 C# 3.0 委托创建过程的发展
    C#禁用窗体最大化按钮
    TeamViewer 通过Internet进行远程访问和远程支持
    c# 匿名方法
    BeginInvoke会重新开一个线程
    c# 线程调用带参数的函数
    c# msdn 委托
    判断某张表是否存在在数据库中(access 2003 与sql server 2008)
    新浪微博自动发送微博 功能已实现(net)
    validateRequest="false" 在asp.net 4.0中失效的解决办法
  • 原文地址:https://www.cnblogs.com/yy123/p/7149333.html
Copyright © 2011-2022 走看看