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.
27 lines
1.4 KiB
27 lines
1.4 KiB
<script type="text/ng-template" id="tableEdit.html" >
|
|
<div class="ngCellText" ng-init="entity=row.entity" ng-controller="Configs.TableEdit">
|
|
<button class="btn sj_btn" ng-click="editRow(entity)">
|
|
<span class="glyphicon glyphicon-pencil"></span> 编辑
|
|
</button>
|
|
<span class="pull-right"> </span>
|
|
<button class="btn sj_btn" ng-click="deleteRow(entity)">
|
|
<span class="glyphicon glyphicon-trash"></span> 删除
|
|
</button>
|
|
</div>
|
|
</script>
|
|
<script type="text/ng-template" id="connectStatus.html">
|
|
<div class="ngCellText" ng-init="entity=row.entity">
|
|
<div ng-show="true" title="汇总库的连接状态">
|
|
<span ng-show="entity.status== 0" class="glyphicon glyphicon-minus"> 未连接</span>
|
|
<span ng-show="entity.status== 1" class="glyphicon glyphicon-ok"> 连接成功</span>
|
|
<span ng-show="entity.status== 2" class="glyphicon glyphicon-import"> 使用中</span>
|
|
<span ng-show="entity.status== 3" class="glyphicon glyphicon-remove"> 连接失败</span>
|
|
</div>
|
|
</div>
|
|
</script>
|
|
<div ng-controller="Kubernetes.TopLevel">
|
|
<div class="wiki-icon-view" ng-controller="Kubernetes.FileDropController" nv-file-drop nv-file-over uploader="uploader" over-class="ready-drop">
|
|
<div class="row kubernetes-view" ng-view></div>
|
|
</div>
|
|
</div>
|