index2.html 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>查询</title>
  6. <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
  7. <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
  8. <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
  9. <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
  10. <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  11. <style>
  12. .odd {
  13. background-color: #FFFAF0;
  14. }
  15. </style>
  16. </head>
  17. <body>
  18. <div ng-controller="listCtrl as ctl" ng-cloak>
  19. <div class="loading" ng-if="ctl.loading">
  20. <div class="loading-msg">
  21. <h3>数据加载中,请等待</h3>
  22. <div class="spinner">
  23. <div class="bounce1"></div>
  24. <div class="bounce2"></div>
  25. <div class="bounce3"></div>
  26. </div>
  27. </div>
  28. </div>
  29. <div class="wrapper wrapper-content">
  30. <div class="row">
  31. <div class="col-md-12">
  32. <div class="ibox float-e-margins">
  33. <div class="ibox-content">
  34. <div class="row">
  35. <div class="col-md-12">
  36. <div class="sp-page" style=" background-image: url(border.png); background-position: bottom; background-repeat: repeat-x;">
  37. <div class="sp-page" style="position: relative; height: 35px; margin-bottom: 20px;" ng-keydown="ctl.keyLogin()">
  38. <img src="search.png" height="30" />
  39. <div class="sp-page" style="width: 600px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border: 1px solid #ccc; border-radius: 10px">
  40. <input type="text" class="sp-input sp-pull-left" style="width: calc(100% - 80px); height: 30px; line-height: 30px; border: 0; border-top-left-radius: 10px; border-bottom-left-radius: 10px; " ng-model="ctl.search.keyword" placeholder="请输入您想查找的内容" />
  41. <button class="sp-btn-blue sp-radius" style="width: 80px; line-height: 22px; margin: 0; text-align: justify; text-align-last: justify; background: #33ACEF; border-top-right-radius: 10px; border-bottom-right-radius: 10px; " ng-click="ctl.doSearch()">搜索</button>
  42. </div>
  43. <a style="float:right" href="index1.html"><img src="return.png" height="30" /></a>
  44. </div>
  45. </div>
  46. <div class="sp-page" style="padding: 0 10%">
  47. <table class="sp-grid sp-mt-10">
  48. <thead>
  49. <tr>
  50. <th><strong>署名</strong></th>
  51. <th><strong>作者</strong></th>
  52. <th><strong>格式</strong></th>
  53. <th><strong>发表时间</strong></th>
  54. <th><strong>创建工具</strong></th>
  55. <th><strong>大小</strong></th>
  56. </tr>
  57. </thead>
  58. <tbody>
  59. <tr ng-class="{odd:$index%2==0}" dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  60. <td ng-bind="item.SIGNATURE"></td>
  61. <td ng-bind="item.AUTHOR"></td>
  62. <td ng-bind="item.FORMAT"></td>
  63. <td ng-bind="item.DATE"></td>
  64. <td ng-bind="item.TOOL"></td>
  65. <td ng-bind="item.SIZE"></td>
  66. </tr>
  67. </tbody>
  68. </table>
  69. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  70. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  71. </div>
  72. <div class="sp-line-gray" ng-show="ctl.noDataTip != 0"></div>
  73. <div class="sp-page" style="position:relative" ng-show="ctl.noDataTip != 0">
  74. <div class="sp-page-col sp-pull-right">
  75. <div class="sp-lh-34">
  76. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  77. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  78. </div>
  79. </div>
  80. <div class="sp-page-col" style="position:absolute;left:50%;transform:translateX(-50%)">
  81. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  82. on-page-change="ctl.getData(newPageNumber)">
  83. </dir-pagination-controls>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. </div>
  95. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  96. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  97. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  98. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  99. <script src="../../apiurljs.js"></script>
  100. <script src="../../js/sm4.js"></script>
  101. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  102. <script>document.write('<scri' + 'pt src="js/index2.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  103. <script src="../../AFrontEnd/js/special/spng.js"></script>
  104. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  105. </body>
  106. </html>