n1ewPestDiagnosis.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. {% load staticfiles %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8" />
  6. <link href="{% static '/lib/bootstrap-3.3.7/css/bootstrap.css' %}" rel="stylesheet">
  7. <link rel="stylesheet" href="{% static '/lib/font-awesome/4.5.0/css/font-awesome.css' %}">
  8. <link rel="stylesheet" href="{% static '/lib/css/ace.min.css' %}" />
  9. <link rel="stylesheet" href="{% static '/lib/css/ace-skins.min.css' %}">
  10. <link rel="stylesheet" href="{% static '/lib/css/ace-rtl.min.css' %}">
  11. <link rel="stylesheet" href="{% static '/lib/layui/css/layui.css' %}">
  12. <link rel="stylesheet" href="{% static '/css/loading.css' %}?versions=0.5.4" />
  13. <style type="text/css">
  14. body {
  15. overflow: hidden;
  16. background: #fff;
  17. }
  18. .searchCover {
  19. margin: 20px 0;
  20. }
  21. .innerTable {
  22. padding: 0 1px 0 0;
  23. min-width: 750px;
  24. }
  25. .table,
  26. .table.table-striped>thead>tr>th {
  27. text-align: center;
  28. }
  29. table td {
  30. vertical-align: middle !important;
  31. }
  32. .nullData {
  33. width: 100%;
  34. height: 500px;
  35. background: #ddd;
  36. text-align: center;
  37. line-height: 500px;
  38. font-size: 20px;
  39. border: 1px solid #ddd;
  40. }
  41. .refresh {
  42. font-size: 16px;
  43. color: #4C8FBD;
  44. margin-right: 30px;
  45. }
  46. .content {
  47. overflow-x: scroll;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div class="content">
  53. <div class="searchCover">
  54. 统计分类:
  55. <select style="width:150px;" name="type" id="utype">
  56. <option value="plant">作物分类</option>
  57. <option value="insect">昆虫种类</option>
  58. </select>
  59. <!-- <button type="button" onclick="sub_filter()" class="btn btn-sm btn-primary">筛选</button> -->
  60. <a class="refresh" href="systemmanage_user_add" style="float: right;">
  61. <i class="add">
  62. <img src="{% static '/img/addicon.png' %}" alt="" width="28">
  63. </i>添加新用户 </a>
  64. </div>
  65. <div class="innerTable">
  66. <table id="datatable" class="table table-striped table-hover">
  67. <thead>
  68. <tr>
  69. <th>采集地址</th>
  70. <th>调查时间</th>
  71. <th>采集人</th>
  72. <th>统计分类</th>
  73. <th>作物种类</th>
  74. <th>统计方法</th>
  75. <th>统计面积</th>
  76. <th>病害名称</th>
  77. <th>病级</th>
  78. <th>操作</th>
  79. </tr>
  80. </thead>
  81. <tbody>
  82. </tbody>
  83. </table>
  84. <div class="fenpei-bottom">
  85. <input type="hidden" id="totalPage" value={{ nums }}>
  86. <div id="page" style="text-align: center;"></div>
  87. </div>
  88. </div>
  89. <div class="user-manage-top">
  90. <!-- 重置密码 -->
  91. </div>
  92. </div>
  93. <script src="{% static '/lib/js/jquery-2.1.4.min.js' %}"></script>
  94. <script src="{% static '/lib/layui/layui.all.js' %}"></script>
  95. <!-- <script src="{% static '/assets/js/newdistpicker.js' %}" type="text/javascript" charset="utf-8"></script>
  96. <script src="{% static '/assets/js/main.js' %}" type="text/javascript" charset="utf-8"></script> -->
  97. <script type="text/javascript">
  98. $.ajaxSetup({
  99. data: { csrfmiddlewaretoken: '{{ csrf_token }}' },
  100. });
  101. </script>
  102. <script type="text/javascript">
  103. </script>
  104. </body>
  105. </html>