statGrain.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <div class="easyui-tabs" data-options="fit:true">
  2. <div title="图表展示">
  3. <div class="grain-float-left"></div>
  4. <div class="grain-float-right"></div>
  5. </div>
  6. <div title="列表展示">
  7. <div class="dt-item grain-tool" style="display:none;margin-top: 0;border: none;">
  8. <div class="dt-nav">
  9. 检查日期:
  10. <input class="easyui-datebox start-time" editable="false" type="text" name="grain-start-time" value="">-
  11. <input class="easyui-datebox end-time" editable="false" name="grain-end-time" value="">&emsp;
  12. <a href="#" class="easyui-linkbutton search-btn bd-add-s" style="height: 25px;" id="grain-search">查询</a>
  13. </div>
  14. </div>
  15. <table id="grain-info" cellspacing=0>
  16. <thead>
  17. <tr>
  18. <th colspan="2">行政审批库</th>
  19. <th colspan="2">整体接管库</th>
  20. <th colspan="2">直属企业购买、自建库</th>
  21. <th rowspan="2" style="max-width: 72px;">仓容小计</th>
  22. <th rowspan="2" style="max-width: 72px;">储粮小计</th>
  23. <th colspan="2">托管粮库</th>
  24. <th colspan="2">控股粮库</th>
  25. <th colspan="2">长期租赁粮库</th>
  26. <th rowspan="2" style="max-width: 72px;">仓容小计</th>
  27. <th rowspan="2" style="max-width: 72px;">储粮小计</th>
  28. <th rowspan="2" style="max-width: 95px;">辖区中央储备粮库存规模</th>
  29. <th rowspan="2" style="max-width: 95px;">直属库内储存中央储备粮占中央储备量总量比例</th>
  30. </tr>
  31. <tr>
  32. <th style="max-width: 60px;">仓容(吨)</th>
  33. <th style="max-width: 60px;">储粮(吨)</th>
  34. <th style="max-width: 60px;">仓容</th>
  35. <th style="max-width: 60px;">储粮</th>
  36. <th style="max-width: 60px;">仓容</th>
  37. <th style="max-width: 60px;">储粮</th>
  38. <th style="max-width: 60px;">仓容</th>
  39. <th style="max-width: 60px;">储粮</th>
  40. <th style="max-width: 60px;">仓容</th>
  41. <th style="max-width: 60px;">储粮</th>
  42. <th style="max-width: 60px;">仓容</th>
  43. <th style="max-width: 60px;">储粮</th>
  44. </tr>
  45. </thead>
  46. <tbody>
  47. </tbody>
  48. </table>
  49. </div>
  50. </div>
  51. <style>
  52. #grain-info {
  53. width: 1198px;
  54. height: 100px;
  55. border-top: 1px solid #ccc;
  56. /*border-bottom: 1px solid #ccc;*/
  57. padding: 0;
  58. table-layout:fixed;
  59. }
  60. #grain-info th,#grain-info td {
  61. border-bottom: 1px solid #d2d2d2;
  62. border-right: 1px solid #d2d2d2;
  63. text-align: center;
  64. padding: 0px 5px;
  65. height: 50px;
  66. }
  67. #grain-info td {
  68. overflow: hidden;
  69. white-space: nowrap;
  70. text-overflow: ellipsis;
  71. }
  72. </style>