customer-meter-view.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <title>单位水表对应表打印预览</title>
  6. <!--框架必需start-->
  7. <script type="text/javascript" src="${ctx}/qui/libs/js/jquery.js"></script>
  8. <script type="text/javascript" src="${ctx}/qui/libs/js/framework.js"></script>
  9. <link href="${ctx}/qui/libs/css/import_basic.css" rel="stylesheet"
  10. type="text/css" />
  11. <link rel="stylesheet" type="text/css" id="skin" prePath="${ctx}/qui/" />
  12. <link rel="stylesheet" type="text/css" id="customSkin" />
  13. <!--框架必需end-->
  14. <style media=print type="text/css">
  15. .noprint {
  16. visibility: hidden
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="noprint"
  22. style="padding-top: 10px; padding-right: 200px; text-align: right;">
  23. <input type="button" value="打印" onclick="window.print();">
  24. </div>
  25. <table class="tableStyle" mode="list"
  26. style="width: 1200px; font-size: 16px;" align="center">
  27. <tr>
  28. <td>单位编号</td>
  29. <td>单位名称</td>
  30. <td>单位地址</td>
  31. <td>年度</td>
  32. <td>客户号</td>
  33. <td>水表编号</td>
  34. <td style="width: 20px;">用水地址</td>
  35. <td>水表变更原因</td>
  36. <td>变更时间</td>
  37. <td>水表规格(口径)</td>
  38. <td>水表类型</td>
  39. </tr>
  40. <#list list as p>
  41. <tr>
  42. <td>${p.showOrgNumber!''}</td>
  43. <td>${p.showOrgName!''}</td>
  44. <td>${p.showOrgAddress!'' }</td>
  45. <td>${p.year!'' }</td>
  46. <td>${p.busOrgCustomerNumber!'' }</td>
  47. <td>${p.busOrgMeterNumber!'' }</td>
  48. <td>${p.address!'0' }</td>
  49. <td>${p.changeReason!'0' }</td>
  50. <td>${p.changeTime!'0' }</td>
  51. <td>${p.meterSpec!'0' }</td>
  52. <td>${p.meterType!'0' }</td>
  53. </tr>
  54. </#list>
  55. </table>
  56. </body>
  57. </html>