123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>查询</title>
- <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
- <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
- <style>
- .odd {
- background-color: #FFFAF0;
- }
- </style>
- </head>
- <body>
- <div ng-controller="listCtrl as ctl" ng-cloak>
- <div class="loading" ng-if="ctl.loading">
- <div class="loading-msg">
- <h3>数据加载中,请等待</h3>
- <div class="spinner">
- <div class="bounce1"></div>
- <div class="bounce2"></div>
- <div class="bounce3"></div>
- </div>
- </div>
- </div>
- <div class="wrapper wrapper-content">
- <div class="row">
- <div class="col-md-12">
- <div class="ibox float-e-margins">
- <div class="ibox-content">
- <div class="row">
- <div class="col-md-12">
- <div class="sp-page" style=" background-image: url(border.png); background-position: bottom; background-repeat: repeat-x;">
- <div class="sp-page" style="position: relative; height: 35px; margin-bottom: 20px;" ng-keydown="ctl.keyLogin()">
- <img src="search.png" height="30" />
- <div class="sp-page" style="width: 600px; position: absolute; top: 0; left: 50%; transform: translateX(-50%); border: 1px solid #ccc; border-radius: 10px">
- <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="请输入您想查找的内容" />
- <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>
- </div>
- <a style="float:right" href="index1.html"><img src="return.png" height="30" /></a>
- </div>
- </div>
- <div class="sp-page" style="padding: 0 10%">
- <table class="sp-grid sp-mt-10">
- <thead>
- <tr>
- <th><strong>署名</strong></th>
- <th><strong>作者</strong></th>
- <th><strong>格式</strong></th>
- <th><strong>发表时间</strong></th>
- <th><strong>创建工具</strong></th>
- <th><strong>大小</strong></th>
- </tr>
- </thead>
- <tbody>
- <tr ng-class="{odd:$index%2==0}" dir-paginate="item in ctl.list|itemsPerPage:ctl.itemsPerPage" total-items="ctl.total_count">
- <td ng-bind="item.SIGNATURE"></td>
- <td ng-bind="item.AUTHOR"></td>
- <td ng-bind="item.FORMAT"></td>
- <td ng-bind="item.DATE"></td>
- <td ng-bind="item.TOOL"></td>
- <td ng-bind="item.SIZE"></td>
- </tr>
- </tbody>
- </table>
- <div class="sp-table-tip ng-hide" ng-show="ctl.noDataTip == 0">
- <i class="fa fa-exclamation-circle sp-mr-10"></i>您好,暂未查询到相关信息!
- </div>
- <div class="sp-line-gray" ng-show="ctl.noDataTip != 0"></div>
- <div class="sp-page" style="position:relative" ng-show="ctl.noDataTip != 0">
- <div class="sp-page-col sp-pull-right">
- <div class="sp-lh-34">
- 每页 <select ng-model="ctl.itemsPerPage" ng-options="x for x in ctl.pageOptions"
- ng-init="ctl.itemsPerPage=ctl.pageOptions[0]"></select> 条
- </div>
- </div>
- <div class="sp-page-col" style="position:absolute;left:50%;transform:translateX(-50%)">
- <dir-pagination-controls max-size="8" direction-links="true" boundary-links="true"
- on-page-change="ctl.getData(newPageNumber)">
- </dir-pagination-controls>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
- <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
- <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
- <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
- <script src="../../apiurljs.js"></script>
- <script src="../../js/sm4.js"></script>
- <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <script>document.write('<scri' + 'pt src="js/index2.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <script src="../../AFrontEnd/js/special/spng.js"></script>
- <script src="../../AFrontEnd/js/special/spngvld.js"></script>
- </body>
- </html>
|