marginReview.jsp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: 822
  4. Date: 2018/8/6
  5. Time: 9:53
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" %>
  9. <%@ include file="/WEB-INF/views/include/taglib.jsp"%>
  10. <html>
  11. <head>
  12. <title>对账列表</title>
  13. <meta name="decorator" content="default"/>
  14. <%--<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>--%>
  15. <style type="text/css">
  16. *{margin: 0;padding: 0}
  17. a{list-style: none;text-decoration: none}
  18. body{background-color: rgb(228,228,228)}
  19. h3{border-left: 3px solid #08c;line-height: 20px;padding-left: 15px; font-weight: normal;margin-top: 15px;}
  20. .filter-query{margin: 15px 0}
  21. .about-query{background-color: rgb(242,242,242);line-height: 35px;overflow: hidden}
  22. .about-query div{color: #666}
  23. .about-query .left-query{float: left;margin-left: 35px}
  24. .about-query .right-query{float: right;margin:2px 35px 0 0;background-color: rgb(215,215,215);padding: 5px 15px;line-height: normal;border-radius: 15px}
  25. .info{background-color: #fff;padding: 20px 0 0 0;}
  26. .info .orderDiv{display: inline-block}
  27. .orderDiv{width: 200px;padding:0 10px 20px 0;}
  28. .orderDiv label{font-size: 14px;line-height: 25px;}
  29. .orderDiv input,select{width:120px;line-height: 25px;height: 25px}
  30. .order-export{width: 280px}
  31. .order-export input:nth-child(2){margin-right: 5px}
  32. .data-list{font-size: 14px;color: rgb(51,51,51);background-color: #fff;height: 100%;}
  33. .data-top{line-height: 40px;background-color: rgb(242,242,242);padding-left: 15px;}
  34. .data-top a{display: inline-block;color: #000000; margin-left: 20px; padding: 3px 10px;text-align: center;border: 1px solid #ccc;line-height: normal;border-radius: 15px}
  35. .data-title{width: 100%;border-collapse: collapse;}
  36. .data-title th{color: #000;font-weight: normal;background-color: #CCCCCC}
  37. .data-title th,.data-title td{width: 8.5%; height: 35px;border: 1px solid #CCCCCC;text-align: center;padding: 2px 0;font-size: 14px;}
  38. .data-title th:nth-of-type(1){width:10%}
  39. .data-title th:nth-of-type(2){width: 10%}
  40. .data-title th:last-of-type{width: 12%}
  41. </style>
  42. <script type="text/javascript">
  43. window.onload = function(){
  44. }
  45. </script>
  46. </head>
  47. <body>
  48. <h3>订单列表</h3>
  49. <div class="filter-query">
  50. <div class="about-query">
  51. <div class="left-query">筛选查询</div>
  52. <div class="right-query">查询</div>
  53. </div>
  54. <div class="info">
  55. <div class="orderDiv order-num">
  56. <label>订单编号</label>
  57. <input type="text"/>
  58. </div>
  59. <div class="orderDiv order-status">
  60. <label>对账状态</label>
  61. <input type="text"/>
  62. </div>
  63. <div class="orderDiv order-type">
  64. <label>订单类型</label>
  65. <select class="select">
  66. <option>普通订单</option>
  67. <option>采购订单</option>
  68. <option>拆分订单</option>
  69. </select>
  70. </div>
  71. </div>
  72. </div>
  73. <div class="data-list">
  74. <div class="data-top">
  75. 数据列表
  76. </div>
  77. <table class="data-title">
  78. <tr>
  79. <th>交易id</th>
  80. <th>交易号</th>
  81. <th>供应商</th>
  82. <th>支付方式</th>
  83. <th>金额</th>
  84. <th>支付时间</th>
  85. <th>审核时间</th>
  86. <th>状态</th>
  87. <th>操作</th>
  88. </tr>
  89. <tr>
  90. <td></td>
  91. <td></td>
  92. <td></td>
  93. <td></td>
  94. <td></td>
  95. <td></td>
  96. <td></td>
  97. <td></td>
  98. <td>
  99. <a href="">财务审核</a>
  100. </td>
  101. </tr>
  102. </table>
  103. </div>
  104. </body>
  105. </html>