|
|
@@ -0,0 +1,75 @@
|
|
|
+<!-- 搜索结果页面 -->
|
|
|
+<style>
|
|
|
+ .result{
|
|
|
+ margin-top: -15px;
|
|
|
+ width:100%;
|
|
|
+ }
|
|
|
+ .result > li{
|
|
|
+ height:40px;
|
|
|
+ line-height:40px;
|
|
|
+ font-size: 14px;
|
|
|
+ border-bottom: 1px solid #EEEED1;
|
|
|
+ }
|
|
|
+ .tips{
|
|
|
+ width: 880px;
|
|
|
+ height:450px;
|
|
|
+ background-image:url('static/img/self/search/no_result.png');
|
|
|
+ }
|
|
|
+ .option{
|
|
|
+ position:relative;
|
|
|
+ left:300px;
|
|
|
+ top:330px;
|
|
|
+ font-size:30px;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+<div class="loading" ng-class="{'in': loading}">
|
|
|
+ <i></i>
|
|
|
+</div>
|
|
|
+
|
|
|
+<div class="row f14">
|
|
|
+ <div class="col-xs-12">
|
|
|
+ <div class="headerline">
|
|
|
+ <div class="content">
|
|
|
+ 搜索结果
|
|
|
+ <span style="font-size: 15px;" ng-hide="noResult">共搜索到{{totalQuestion}}条相关问题</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div style="min-height: 460px;" ng-hide="noResult">
|
|
|
+ <ul class="result">
|
|
|
+ <li ng-repeat="question in questions">
|
|
|
+ <a class="text-light ng-binding" style="color:#2a6496; " target="_blank" ng-bind="::question.title" ui-sref="question.solution({id:question.id})">
|
|
|
+ </a>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+
|
|
|
+ <!-- 分页条 start -->
|
|
|
+ <nav style="margin-top:20px; margin-left: 23px;" ng-show="pageInfo.totalPage > 1">
|
|
|
+ <ul class="pagination">
|
|
|
+
|
|
|
+ <li><a aria-label="Previous"><span aria-hidden="true">«</span></a></li>
|
|
|
+
|
|
|
+ <li ng-repeat="i in pageInfo.pageIndex">
|
|
|
+ <a ng-click="splitPage(i)">{{i}}</a>
|
|
|
+ </li>
|
|
|
+
|
|
|
+ <li><a aria-label="Previous"><span aria-hidden="true">»</span></a></li>
|
|
|
+ </ul>
|
|
|
+ </nav>
|
|
|
+ <!-- 分页条 end -->
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <!-- 未搜索到结果 -->
|
|
|
+ <div style="min-height: 450px;" ng-show="noResult" class="tips">
|
|
|
+ <div>
|
|
|
+ <table class="option">
|
|
|
+ <tr>
|
|
|
+ <td><i class="fa fa-home"></i> <a href="/platform-b2b" target="_self">返回主页</a></td>
|
|
|
+ <td width="100px"></td>
|
|
|
+ <td width="100px"></td>
|
|
|
+ <td><i class="fa fa-search"></i> <a href="./serve#/question/common" target="_self">继续搜索</a></td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|