123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <!--
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- -->
- <div class="position-relative">
- <div class="tableOverlay"></div>
- <!-- Not for table Loader its only for initial loading -->
- <div class="fontLoader" style="z-index:999">
- <i class="fa fa-refresh fa-spin-custom"></i>
- </div>
- <div class="ellipsis-with-margin" style="display: none;"><span class="searchResult" style=" font-size: 16px;"></span>
- </div>
- <div class="searchTable">
- <div class="row no-data" style="display: none;">
- <div class="position-relative thick-border">
- <div style="padding-top: 20px; " class="table-responsive tableBorder">
- <table class="table table-hover backgrid table-quickMenu">
- <tbody>
- <tr class="empty">
- <td colspan="16"><span>无记录!</span></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <div style="padding-top: 0px;">
- <div class="row form-group pagination-box filter-box" style="display: none;">
- <div class="col-sm-12 inline-content-fr no-padding-left">
- <div class="inline" data-id="colManager"></div>
- <div class="inline">
- <a href="javascript:void(0)" class="multiSelectTag assignTag btn btn-action btn-sm" style="display:none" title="指派分类" data-id="addAssignTag"><i class="fa fa-plus"></i> 分类</a>
- </div>
- {{#unless isGlossaryView}}
- <div class="inline">
- <a href="javascript:void(0)" class="multiSelectTerm assignTerm btn btn-action btn-sm" style="display:none" title="指派术语" data-id="addAssignTerm"><i class="fa fa-plus"></i> 术语</a>
- </div>
- {{/unless}}
- <div class="inline" data-id="containerCheckBox" style="display: none;">
- <label class="checkbox-inline btn" for="historicalentities">
- <input type="checkbox" data-id="checkDeletedEntity" data-value="includeDE" id="historicalentities" />
- <b>显示历史实体</b></label>
- </div>
- <div class="inline" data-id="containerCheckBox" style="display: none;">
- <label class="checkbox-inline btn" for="subclassifications">
- <input type="checkbox" data-id="checkSubClassification" data-value="excludeSC" id="subclassifications" />
- <b>排除子数据模型</b></label>
- </div>
- {{#ifCond fromView '!==' "classification"}}
- <div class="inline" data-id="containerCheckBox" style="display: none;">
- <label class="checkbox-inline btn" for="subtypes">
- <input type="checkbox" data-id="checkSubType" data-value="excludeST" id="subtypes" />
- <b>排除子类型</b></label>
- </div>
- {{/ifCond}}
- </div>
- </div>
- <div id="r_searchResultTableLayoutView">
- {{#if isSearchTab}}<h1><b>{{searchType}}</b></h1>{{/if}}
- <div class="entityLink" style="display:none">
- <p class="entityLink">搜索实体
- {{#if entityCreate}}
- or
- <a href="javascript:void(0)" data-id='createEntity'> 创建新实体 </a>
- {{/if}}
- </p>
- </div>
- </div>
- <div class="pagination-box searach-result-pagination row" style="display: none">
- <div class="col-sm-4">
- <span class="labelShowRecord pull-left" data-id="pageRecordText"> </span>
- </div>
- <div class="col-sm-8">
- <div class="inline-content-fr">
- <div class="backgrid-paginator inline">
- <ul class="" data-id="paginationDiv" style="display:none">
- <li>
- <button type="button" data-id="previousData" title="上一项" disabled="true">
- <i class="fa fa-angle-left" aria-hidden="true"></i>
- </button>
- </li>
- <li class="active">
- <a href="javascript:void(0)" data-id="activePage"></a>
- </li>
- <li>
- <button type="button" data-id="nextData" title="下一项">
- <i class="fa fa-angle-right" aria-hidden="true"></i>
- </button>
- </li>
- </ul>
- </div>
- <div class="inline col-sm-4" data-id="paginationDiv">
- <div class="input-group" data-id="goToPageDiv">
- <input type="text" class="form-control number-input" data-id="gotoPage" placeholder="目标页面" />
- <span class="input-group-btn">
- <button class="btn btn-default" type="button" data-id="gotoPagebtn" title="跳转至" disabled="disabled">
- Go!
- </button>
- </span>
- </div>
- </div>
- <div class="inline">
- <div class="inline-content">
- <span class="control-label-sm inline ">每页条数 :</span>
- <div class="inline" style="width: 80px;">
- <select data-id="showPage" multiple="multiple" class="form-control"> </select>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="text-center" data-id="columnEmptyInfo" style="display: none;">
- <h4>请选择一列或多列以查看数据</h4>
- </div>
|