summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-09-05 14:48:36 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-09-05 14:48:47 +0800
commit89428dbe8181289f22935dc0660c285caad18b15 (patch)
treede8490cd5f789382bc8c5d3162701b7f8ebb5d27 /usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html
parent418ca82940e11e7a1234ae3e80447651f22c1320 (diff)
feat: optimize the code for the graphiclist component
Change-Id: I030d429837aff26772e4e224b19eef276b12ceeb Issue-ID: USECASEUI-307 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html')
-rw-r--r--usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html5
1 files changed, 0 insertions, 5 deletions
diff --git a/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html b/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html
index 317d48b0..19efdb36 100644
--- a/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html
+++ b/usecaseui-portal/src/app/shared/components/graphiclist/graphiclist.component.html
@@ -14,9 +14,6 @@
limitations under the License.
-->
<div class="content">
- <!-- <nz-modal nzWrapClassName="vertical-center-modal" [(nzVisible)]="isVisibleMiddle" nzTitle="Alarm Chart" (nzOnCancel)="handleCancelMiddle()" (nzOnOk)="handleOkMiddle()">
- <app-line [initData]="alarmChartInitBig" [chartData]="alarmChartDataBig"></app-line>
- </nz-modal> -->
<div class="chart">
<div class="select">
<span>Report Time: </span>
@@ -39,7 +36,6 @@
</tr>
</thead>
<tbody>
- <!-- <ng-template ngFor let-data [ngForOf]="nzTable.data" let-i="index"> -->
<tr *ngFor="let item of nzTable.data; let i = index; ">
<td>{{i+1}}</td>
<td>{{item.sourceName}}</td>
@@ -48,7 +44,6 @@
<td>{{item.startEpochMicrosec | date:'yyyy-MM-dd HH:mm:ss'}}</td>
<td><a class="action" (click)="detailShow(item)"><i class="details"></i></a></td>
</tr>
- <!-- </ng-template> -->
</tbody>
</nz-table>
</div>