|
|
|
<div ng-controller="System.SystemListController">
|
|
|
|
<div hawtio-tabs></div>
|
|
|
|
<div class="container-content ">
|
|
|
|
<div class="container-fluid sj_fluid">
|
|
|
|
<div class="row clear fl">
|
|
|
|
<!--<input type="checkbox" class="fl mr5 " style="margin-top: 8px;" />
|
|
|
|
<label class="fl mr5 " style="margin-top: 5px; font-style:nomal;">全选</label>-->
|
|
|
|
<span class="pull-right"> </span>
|
|
|
|
<button class="btn pull-right sj_btn_grey " ng-disabled="!id && tableConfig.selectedItems.length == 0" ng-click="deletePrompt(id || tableConfig.selectedItems)">
|
|
|
|
<i class="glyphicon glyphicon-open"></i> 脚本上传
|
|
|
|
</button>
|
|
|
|
<span class="pull-right"> </span>
|
|
|
|
<button class="btn pull-right sj_btn_grey " ng-disabled="!id && tableConfig.selectedItems.length == 0" ng-click="migrationClick.open(id || tableConfig.selectedItems)">
|
|
|
|
<i class="glyphicon glyphicon-save"></i> 文件包导出
|
|
|
|
</button>
|
|
|
|
<span class="pull-right"> </span>
|
|
|
|
<button class="btn pull-right sj_btn_grey " ng-disabled="!id && tableConfig.selectedItems.length == 0" ng-click="downLoadExcelFile()">
|
|
|
|
<i class="glyphicon glyphicon-export"></i> Excel导出
|
|
|
|
</button>
|
|
|
|
<span class="pull-right"> </span>
|
|
|
|
<button class="btn pull-right sj_btn_grey " ng-disabled="!id && tableConfig.selectedItems.length == 0" ng-click="createOracleService(id || tableConfig.selectedItems)">
|
|
|
|
<i class="glyphicon glyphicon-import"></i> Excel导入
|
|
|
|
</button>
|
|
|
|
<div class="btn pull-right sj_btn_grey ">
|
|
|
|
<a class="data_file_btn fl" >导入到服务器</a><input type="file" name="file-upload[]" id="file-uploads" onchange="angular.element(this).scope().upLoadExcelFile(this.files)" multiple />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div ng-show="true">
|
|
|
|
<div class="col-md-12" >
|
|
|
|
<table ng-table-dynamic="tableParams with columns" class="table table-condensed table-bordered table-striped" >
|
|
|
|
<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>
|