aggregation-platform/plugins/system/html/systemCodeSearch.html

22 lines
1.0 KiB
HTML

<div ng-controller="System.SystemCodeController">
<div hawtio-breadcrumbs></div>
<div hawtio-tabs></div>
<div class="container-content ">
<div class="container-fluid sj_fluid">
<div ng-hide="model.systemInfo.length" class="align-center">
<p class="alert alert-info">当前没有可以查看的数据.</p>
</div>
<div ng-show="model.systemInfo.length" class="mr20">
<table ng-table="tableParams" class="table table-condensed table-bordered table-striped" show-filter="true">
<tr ng-repeat="row in $data">
<td title="'系统编码'" filter="{ code: 'text'}" sortable="'code'">
{{row.code}}</td>
<td title="'系统名称'" filter="{ systemName: 'text'}" sortable="'systemName'">
{{row.systemName}}</td>
</tr>
</table>
</div>
</div>
</div>
</div>