summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/components/performance-details/performance-details.component.html
diff options
context:
space:
mode:
authorzhangab <zhanganbing@chinamobile.com>2018-10-31 16:36:06 +0800
committerzhangab <zhanganbing@chinamobile.com>2018-10-31 16:36:36 +0800
commita5a05aa4c736c58d606234aa47a266cce054cd2d (patch)
tree8ffb5bbc12af6995585fcb8d33608e9f1e0148c5 /usecaseui-portal/src/app/components/performance-details/performance-details.component.html
parent13de0d893a4ff6d45a49861f7536822e6be1c801 (diff)
Fix VNF Performance Query Bugs
Change-Id: I65637d6f058905d0918e5dc1740594572fa4c931 Issue-ID: USECASEUI-166 Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/components/performance-details/performance-details.component.html')
-rw-r--r--usecaseui-portal/src/app/components/performance-details/performance-details.component.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/components/performance-details/performance-details.component.html b/usecaseui-portal/src/app/components/performance-details/performance-details.component.html
new file mode 100644
index 00000000..8300973a
--- /dev/null
+++ b/usecaseui-portal/src/app/components/performance-details/performance-details.component.html
@@ -0,0 +1,47 @@
+
+<div class="content">
+ <div class="header">
+ <h2>HEADER INFORMATION</h2>
+ <hr> <span class="tildeimg"></span>
+ <div class="headerlist">
+ <div class="leftlist">
+ <p> <span>Version :</span>{{datailheaderdata.version}}</p>
+ <p> <span>Domain :</span>{{datailheaderdata.domain}}</p>
+ <p> <span>EventType :</span>{{datailheaderdata.eventType}}</p>
+ <p> <span>Event Name :</span>{{datailheaderdata.eventName}}</p>
+ <p> <span>Event Id :</span>{{datailheaderdata.eventId}}</p>
+ <p> <span>NfcNamingCode :</span>{{datailheaderdata.nfcNamingCode}}</p>
+
+
+ </div>
+ <div class="rightlist">
+ <p> <span>NfNamingCode :</span>{{datailheaderdata.nfNamingCode}}</p>
+ <p> <span>SourceName :</span>{{datailheaderdata.sourceName}}</p>
+ <p> <span>SourceId :</span>{{datailheaderdata.sourceId}}</p>
+ <p> <span>ReportingEntityName :</span>{{datailheaderdata.reportingEntityName}}</p>
+ <p> <span>ReportingEntityId :</span>{{datailheaderdata.reportingEntityId}}</p>
+ <p> <span>ReportTime :</span>{{datailheaderdata.reportTime}}</p>
+ </div>
+ </div>
+ </div>
+ <hr>
+ <button [ngClass]="{'buttonActive':moredetailShow}" (click)="slideUpDown()"></button>
+ <h2 class="detailtitle">DETAIL INFORMATION</h2>
+ <div class="detailInformatioin" [@slideUpDown]='state'>
+ <nz-table #detailTable [nzData]="dataillistdata" [nzShowPagination]="false" nzSize="small" [nzBordered]="true">
+ <thead>
+ <tr>
+ <th nzWidth="18%">Item Name</th>
+ <th >Item Value</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr *ngFor="let data of dataillistdata">
+ <td>{{data.name}}</td>
+ <td>{{data.value}}</td>
+ </tr>
+ </tbody>
+ </nz-table>
+ </div>
+ </div>
+ \ No newline at end of file