summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html
diff options
context:
space:
mode:
authordecheng zhang <decheng.zhang@huawei.com>2022-05-01 21:53:40 -0400
committerdecheng zhang <decheng.zhang@huawei.com>2022-05-05 19:04:15 -0400
commitcfa4676dc8f327449d2c7625b57b8bba628b6a08 (patch)
treebedd9ba53b8405d143cf0aa8ae65883d3bf92f1d /usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html
parentf45c8fb196da87f30142424f1aeab6282496bfbc (diff)
fix: display CCVPN service information and RRO.
Issue-ID: REQ-1103 Signed-off-by: decheng zhang <decheng.zhang@huawei.com> Change-Id: Ib535004e6d0cfa668d5f532980f93057cc23ff3e Signed-off-by: decheng zhang <decheng.zhang@huawei.com>
Diffstat (limited to 'usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html')
-rw-r--r--usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html b/usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html
index c9e150fa..edf36343 100644
--- a/usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html
+++ b/usecaseui-portal/src/app/views/network/ccvpn-network/ccvpn-network.component.html
@@ -41,11 +41,11 @@
{{"i18nTextDefine_CCVPNService" | translate}} :
</span>
<nz-dropdown [nzTrigger]="'click'" [nzPlacement]="'bottomLeft'">
- <button nz-button nz-dropdown><span>{{serviceSelected}}</span> <i class="anticon anticon-down"></i>
+ <button nz-button nz-dropdown><span>{{serviceSelected && servicesMap.get(serviceSelected).name}}</span> <i class="anticon anticon-down"></i>
</button>
<ul nz-menu>
<li nz-menu-item (click)="chooseService(svcInstId)" *ngFor="let svcInstId of getKeys(servicesMap)">
- <a title="{{svcInstId}}">{{svcInstId}}</a>
+ <a title="{{servicesMap.get(svcInstId).name}}">{{servicesMap.get(svcInstId).name}}</a>
</li>
</ul>
</nz-dropdown>
@@ -87,6 +87,7 @@
>
<thead>
<tr>
+ <th>Ethernet Svc Name</th>
<th>Service Instance Id</th>
<th>Service Type</th>
<th>VLAN</th>
@@ -97,6 +98,7 @@
<tbody>
<ng-template ngFor let-data [ngForOf]="basicTable.data" let-i="index">
<tr>
+ <td>{{ data.name }}</td>
<td>{{ data.id }}</td>
<td>Cloud Lease Line</td>
<td>{{ data.vlan }}</td>