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.
46 lines
1.8 KiB
46 lines
1.8 KiB
<div ng-controller="Configs.GfsController">
|
|
<div class="row">
|
|
<div hawtio-breadcrumbs></div>
|
|
</div>
|
|
<div class="row">
|
|
<div hawtio-tabs></div>
|
|
</div>
|
|
<div class="container-content sj_content">
|
|
<div class="row">
|
|
<div class="col-md-1">
|
|
<button class="btn pull-right sj_btn_blue" ng-click="create()">
|
|
<span class="glyphicon glyphicon-plus"></span> 添加
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row" ng-repeat="volume in volumes">
|
|
<table class="table table-hover">
|
|
<tr>
|
|
<th class="no-fade table-header">
|
|
<span class="">{{volume.name}}</span>
|
|
</th>
|
|
<th class="no-fade table-header">
|
|
<span class="">云路径:{{volume.path}}</span>
|
|
</th>
|
|
<th class="no-fade table-header">
|
|
<span class="">状态</span>
|
|
</th>
|
|
<th class="no-fade table-header">
|
|
<span class="">已用{{volume.usedSize}}/共{{allSize}}</span>
|
|
</th>
|
|
<th class="no-fade table-header">
|
|
<button class="btn sj_btn" ng-click="editRow(volume)">
|
|
<span class="glyphicon glyphicon-pencil"></span> 编辑
|
|
</button>
|
|
</th>
|
|
</tr>
|
|
<tr ng-repeat="row in volume.brick track by $index" class="row.class">
|
|
<td ng-repeat="col in row" class="col.class">
|
|
<span class="col.class">{{col.title}}</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|