| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <!--<meta charset="UTF-8">-->
- <style>
- table, th, td {
- border: 1px solid black;
- border-collapse: collapse;
- }
- table {
- width: 92%;
- margin: 0 auto;
- font-size: 15px;
- }
- td {
- width: 50%;
- height: 20px;
- }
- tfoot td {
- border-left: none;
- border-right: none;
- border-bottom: none;
- }
- .tableClass {
- width: 100%;
- margin: 0 auto;
- border-collapse: collapse;
- border: none;
- }
- .tableClass td {
- width: 30%;
- /* border-right: 1px solid black;*/
- border-left: none;
- border-top: none;
- border-bottom: none;
- }
- .con {
- width: 100%;
- margin: 0 auto;
- height: 20px;
- }
- .con div {
- width: 25%;
- float: left;
- text-align: center;
- font-size: 15px;
- }
- .title {
- font-size: large;
- font-weight: bold;
- height: 30px;
- }
- .footerTip {
- width: 92%;
- margin: 2px auto;
- font-size: 12px;
- }
- </style>
- <div>
- <table>
- <tbody>
- <tr>
- <td style="text-align:center;">{{title}}</td>
- </tr>
- <tr style=" border-bottom: none;">
- <td style=" text-align: right;">票据号:{{pjh}}</td>
- </tr>
- </tbody>
- </table>
- <table>
- <tbody>
- <tr>
- <td>用户编号:{{yhbh}}</td>
- <td>用户姓名:{{yhxm}}</td>
- </tr>
- <tr>
- <td>收费日期:{{sfrq}}</td>
- <td>月 份:{{cwyf}}</td>
- </tr>
- <tr>
- <td>联系电话:{{lxdh}}</td>
- <td>用户地址:{{addr}}</td>
- </tr>
- </tbody>
- <tfoot>
- <tr>
- <td colspan="2">
- <table class="tableClass">
- <tr>
- <td>上次结余:{{scjy}}元</td>
- <td>本次预存:{{bcyc}}元</td>
- <td style="border-right: none">本次扣减:{{bckj}}元</td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2">
- <table class="tableClass">
- <tr>
- <td>实收金额:{{sszje}}元</td>
- <td>账户余额:{{bcye}}元</td>
- <td style="border-right: none">收费人员:{{sfry}}</td>
- </tr>
- </table>
- </td>
- </tr>
- </tfoot>
- </table>
- </div>
|