index_p.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <style type="text/css" media=print>
  2. .noprint{display : none}
  3. body{height: auto}
  4. html, body{
  5. height: auto!important;
  6. min-height: auto!important;
  7. }
  8. table tr td{padding: 3px !important; background-color: #FD482C !important;font-size: 10px;}
  9. </style>
  10. <!--startprint-->
  11. <div class="widget-body no-padding" style="border: 1px; ">
  12. <div class="toolbar" style=" font-size: 15px;text-align: center">
  13. 收费凭证
  14. </div>
  15. <div id="toolbar" class="toolbar" style=" font-size: 10px;">
  16. 缴费日期:{$row.pay_date}
  17. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  18. 业主:{$row.hu.usesr_name}
  19. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  20. 房产:{$row.village.name}{$row.dong.name}{$row.danyuan.name}
  21. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  22. 应缴金额:{$row.true_price}元
  23. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  24. <span style="float: right">凭证编号:{$row.order_number}</span>
  25. </div>
  26. <table id="table" class=" table-striped table-bordered table-hover table-nowrap" width="100%" >
  27. <tr>
  28. <td>序号</td>
  29. <td>项目</td>
  30. <td>交费周期</td>
  31. <td>数量</td>
  32. <td>单位</td>
  33. <td>单价</td>
  34. <td>金额</td>
  35. <td>折扣</td>
  36. <td>实收</td>
  37. </tr>
  38. {foreach $get as $k=>$vo}
  39. <tr>
  40. <td>{$k+1}</td>
  41. <td>
  42. {if $vo.item_id eq '1'}
  43. 水费
  44. {elseif $vo.item_id eq '2'}
  45. 电费
  46. {elseif $vo.item_id eq '999999999'}
  47. 车位服务费
  48. {else}
  49. {if $vo.item.item eq '1'}
  50. 物业费
  51. {else}
  52. 垃圾处理费
  53. {/if}
  54. {/if}
  55. </td>
  56. <td>{$vo.start_time_text}~{$vo.end_time_text}</td>
  57. <td>
  58. {if $vo.item_id neq '1' && $vo.item_id neq '2' && $vo.item_id neq '999999999' }
  59. {$vo.hu.big_area}
  60. {else}
  61. {$vo.yongliang}
  62. {/if}
  63. </td>
  64. <td>
  65. {if $vo.item_id neq '1' && $vo.item_id neq '2' && $vo.item_id neq '999999999' }
  66. {if $vo.item.method eq 1}
  67. 元/每平方/月
  68. {else}
  69. 元/每户/月
  70. {/if}
  71. {else}
  72. {$vo.danwei}
  73. {/if}
  74. </td>
  75. <td>{if $vo.item_id neq '1' && $vo.item_id neq '2' && $vo.item_id neq '999999999' }
  76. {$vo.item.price}
  77. {else}
  78. {$vo.danjia}
  79. {/if}
  80. </td>
  81. <td>{$vo.price}</td>
  82. <td>{$vo.zhekou}</td>
  83. <td>{$vo.true_price}</td>
  84. </tr>
  85. {/foreach}
  86. <tr >
  87. <td colspan="9">
  88. <div style="width: 100px;margin-left: 250px;">
  89. 实际账单期:
  90. </div>
  91. </td>
  92. </tr>
  93. <tr >
  94. <td colspan="9">
  95. <div style=" float:left;margin-left: 20px">
  96. 合计(大写):{$row.true_price_zhongwen}
  97. </div>
  98. <div style="float: right; margin-right: 20px">
  99. ¥{$row.true_price}元 &nbsp;&nbsp;&nbsp;&nbsp;{$row.pay_type}
  100. </div>
  101. </td>
  102. </tr>
  103. </table>
  104. <div class="toolbar" style=" font-size: 10px;float: right">
  105. 打印时间:{$row.time}
  106. </div>
  107. </div>
  108. <!--endprint-->
  109. <p class="noprint">
  110. <!--<input id="btnPrint" type="button" value="打印"onclick="javascript:window.print();" />-->
  111. <input id="btnPrint" type="button" value="打印预览" onclick="preview(1)"/>
  112. </p>
  113. <script>
  114. window.onload=function()//用window的onload事件,窗体加载完毕的时候
  115. {
  116. var oFrame = document.getElementById("layui-layer-iframe1");
  117. oFrame.height = '200px';
  118. }
  119. function preview(oper)
  120. {
  121. if (oper <10)
  122. {
  123. bdhtml=window.document.body.innerHTML;
  124. sprnstr="<!--startprint-->"; //开始打印标识字符串有17个字符
  125. eprnstr="<!--endprint-->"; //结束打印标识字符串
  126. prnhtml=bdhtml.substr(bdhtml.indexOf(sprnstr)+17); //从开始打印标识之后的内容
  127. prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr)); //截取开始标识和结束标识之间的内容
  128. alert(prnhtml);
  129. window.document.body.innerHTML=prnhtml; //把需要打印的指定内容赋给body.innerHTML
  130. console.log(prnhtml);
  131. window.print(); //调用浏览器的打印功能打印指定区域
  132. window.document.body.innerHTML=bdhtml; // 最后还原页面
  133. // bdhtml=window.document.body.innerHTML;//获取当前页的html代码
  134. //
  135. // sprnstr="<!–-startprint"+oper+"-–>";//设置打印開始区域
  136. // eprnstr="<!–-endprint"+oper+"-–>";//设置打印结束区域
  137. // prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr));//从開始代码向后取html
  138. // alert(prnhtml) ;
  139. // prnhtmlprnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//从结束代码向前取html
  140. // window.document.body.innerHTML=prnhtml;
  141. // window.print();
  142. // window.document.body.innerHTML=bdhtml;
  143. } else {
  144. window.print();
  145. }
  146. }
  147. </script>