index1.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. .selectNow {
  13. background-color: #008a94;
  14. color: #fff !important;
  15. }
  16. .selectNow:hover {
  17. background-color: #008a94;
  18. color: #fff !important;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div ng-controller="listCtrl as ctl" ng-cloak>
  24. <div class="loading" ng-if="ctl.loading">
  25. <div class="loading-msg">
  26. <h3>数据加载中,请等待</h3>
  27. <div class="spinner">
  28. <div class="bounce1"></div>
  29. <div class="bounce2"></div>
  30. <div class="bounce3"></div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="wrapper wrapper-content">
  35. <div class="row">
  36. <div class="col-md-12">
  37. <div class="ibox float-e-margins">
  38. <div class="ibox-content">
  39. <div class="row">
  40. <div class="col-md-12" ng-if="ctl.searchFlag==false">
  41. <center class="sp-page" style="width: 600px; position: absolute; top: 50px; left: 50%; transform: translateX(-50%);"><img src="search.png" /></center>
  42. <div class="sp-page" style="width: 600px; position: absolute; top: 130px; left: 50%; transform: translateX(-50%); border: 1px solid #ccc; border-radius: 10px" ng-keydown="ctl.keyLogin()">
  43. <input type="text" class="sp-input sp-pull-left" style="width: calc(100% - 80px); height: 40px; line-height: 40px; border: 0; border-top-left-radius: 10px; border-bottom-left-radius: 10px; " ng-model="ctl.search.keyword" placeholder="请输入您想查找的内容" />
  44. <button class="sp-btn-blue sp-radius" style="width: 80px; line-height: 32px; margin: 0; text-align: justify; text-align-last: justify; background: #33ACEF; border-top-right-radius: 10px; border-bottom-right-radius: 10px; " ng-click="ctl.getData()">搜索</button>
  45. </div>
  46. </div>
  47. <div class="col-md-12" ng-if="ctl.searchFlag==true">
  48. <div class="sp-page" style=" background-image: url(border.png); background-position: bottom; background-repeat: repeat-x;">
  49. <div class="sp-page" style="position: relative; height: 35px; margin-bottom: 20px;" ng-keydown="ctl.keyLogin()">
  50. <img src="search.png" height="30" />
  51. <div class="sp-page" style="width: 600px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border: 1px solid #ccc; border-radius: 10px">
  52. <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="请输入您想查找的内容" />
  53. <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.getData()">搜索</button>
  54. </div>
  55. <a style="float:right" href="index1.html"><img src="return.png" height="30" /></a>
  56. </div>
  57. </div>
  58. <div class="sp-page" style="padding: 0 10%">
  59. <table class="sp-grid sp-mt-10">
  60. <thead>
  61. <tr>
  62. <th><strong>编号</strong></th>
  63. <th><strong>标题</strong></th>
  64. <th><strong>收文编号</strong></th>
  65. <th><strong>来文单位</strong></th>
  66. <th><strong>意见</strong></th>
  67. <th><strong>来文日期</strong></th>
  68. <th><strong>拟稿人</strong></th>
  69. </tr>
  70. </thead>
  71. <tbody>
  72. <tr ng-class="{odd:$index%2==0}" dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
  73. <td ng-bind="item.APPCODE"></td>
  74. <td ng-bind="item.BT"></td>
  75. <td ng-bind="item.SWBH"></td>
  76. <td ng-bind="item.LWDW"></td>
  77. <td ng-bind="item.BGSNBYJ"></td>
  78. <td ng-bind="item.LWRQ"></td>
  79. <td ng-bind="item.NGR"></td>
  80. </tr>
  81. </tbody>
  82. </table>
  83. <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
  84. <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
  85. </div>
  86. <div class="sp-line-gray" ng-show="ctl.noDataTip != 0"></div>
  87. <div class="sp-page" style="position:relative" ng-show="ctl.noDataTip != 0">
  88. <div class="sp-page-col sp-pull-right">
  89. <div class="sp-lh-34">
  90. 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
  91. ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
  92. </div>
  93. </div>
  94. <div class="sp-page-col" style="position:absolute;left:50%;transform:translateX(-50%)">
  95. <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
  96. on-page-change="ctl.getData(newPageNumber)">
  97. </dir-pagination-controls>
  98. </div>
  99. </div>
  100. </div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
  110. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  111. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  112. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  113. <script src="../../apiurljs.js"></script>
  114. <script src="../../js/sm4.js"></script>
  115. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  116. <script>document.write('<scri' + 'pt src="js/index1.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  117. <script src="../../AFrontEnd/js/special/spng.js"></script>
  118. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  119. </body>
  120. </html>