You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aggregation-platform/plugins/system/html/systemList.html

38 lines
2.1 KiB

8 years ago
<div ng-controller="System.SystemListController">
<div hawtio-tabs></div>
<div class="container-content ">
<div class="container-fluid sj_fluid">
<div class="row clear fl mb10" >
<!--<input type="checkbox" class="fl mr5 " style="margin-top: 8px;" />
<label class="fl mr5 " style="margin-top: 5px; font-style:nomal;">全选</label>-->
8 years ago
<button class="btn pull-right sj_btn_grey " ng-click="downloadFilePackage()">
<i class="glyphicon glyphicon-save"></i> 文件包导出
</button>
<span class="pull-right">&nbsp;</span>
8 years ago
<button class="btn pull-right sj_btn_grey mr5" ng-click="downLoadExcelFile()">
<i class="glyphicon glyphicon-export"></i> Excel导出
</button>
<span class="pull-right">&nbsp;</span>
8 years ago
<button class="sj_btn_green fl mr5" ng-click="upLoadExcelFile()">
<i class="glyphicon glyphicon-import"></i>Excel导入
</button>
</div>
<div ng-show="true">
<div class="col-md-12" >
<div ng-show="model.length == 0" class="alert alert-warning sj_alert-warning">
<span class="help-block">
当前没有可以查看的数据请点击Excel导入按钮导入Excel数据</span></div>
8 years ago
<table ng-show="model.length != 0" ng-table-dynamic="tableParams with columns" class="table table-condensed table-bordered table-striped table_sj_td_center">
<tr ng-repeat="row in $data">
<td ng-repeat="col in $columns">
<span ng-show="col.field != 'id'">{{row[col.field]}}</span>
<button class="btn sj_btn" ng-hide="col.field != 'id'" ng-click="viewClick(row)">查看</button>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>