middle.ejs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <div class="panel-content">
  2. <div class="panel-title fluid">
  3. <div class="title-main d-flex justify-content-between">
  4. <div>
  5. <select class="form-control form-control-sm">
  6. <option>全部</option>
  7. <option>编制中</option>
  8. <option>审批中</option>
  9. <option>审批完成</option>
  10. </select>
  11. </div>
  12. <div>
  13. <a href="#" class="btn btn-primary btn-sm pull-right">添加计量</a>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="content-wrap">
  18. <div class="c-body">
  19. <div class="tab-content">
  20. <table class="table table-bordered">
  21. <thead>
  22. <tr>
  23. <th>计量编号</th>
  24. <th>计量金额</th>
  25. <th>计量月份</th>
  26. <th>计量期数</th>
  27. <th>状态</th>
  28. <th>当前处理人</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <tr>
  33. <td><a href="jiliang-detail.html">WWUJ-2-201710</a></td>
  34. <td>34234234.00</td>
  35. <td>201710</td>
  36. <td>15</td>
  37. <td>审批中</td>
  38. <td>监理-张三</td>
  39. </tr>
  40. </tbody>
  41. </table>
  42. </div>
  43. </div>
  44. </div>
  45. </div>