summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html
diff options
context:
space:
mode:
authorcyuamber <xuranyjy@chinamobile.com>2019-12-09 01:20:06 +0800
committercyuamber <xuranyjy@chinamobile.com>2019-12-09 01:23:36 +0800
commit7685cee34d8a8294306c94b2018c9345fe78020c (patch)
tree84b93670a744c96c9b239ba230073771c5ce99bb /usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html
parent6aa6f5cc8b6a4a54016a271ccf7dac14827aff43 (diff)
feat: add interface url and Modifying common components
Change-Id: I8eb49db034ee54d7f30b79a3291f1c820ad415ce Issue-ID: USECASEUI-369 Signed-off-by: cyuamber <xuranyjy@chinamobile.com>
Diffstat (limited to 'usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html')
-rw-r--r--usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html b/usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html
index 8a6cbf23..5a600ce3 100644
--- a/usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html
+++ b/usecaseui-portal/src/app/shared/components/basic-info/basic-info.component.html
@@ -1,4 +1,4 @@
-<nz-list class="taskmodel_list" [nzDataSource]="checkDetail" nzBordered [nzHeader]="'配置审核详情:'" [nzFooter]="null"
+<nz-list class="taskmodel_list" [nzDataSource]="checkDetail" nzBordered [nzHeader]="'配置审核详情:'" [nzFooter]="null" *ngIf="taskModel!==false"
[nzRenderItem]="checkItem">
<ng-template #checkItem let-check>
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8">
@@ -28,7 +28,11 @@
<ng-template #businessItem let-item>
<nz-list-item nz-row nzType="flex" nzJustify="start" [nzGutter]="8" *ngFor="let list of businessList ">
<div nz-col [nzSpan]="list.length === 1 ? '24' : '8'" *ngFor="let ite of list">
- <span class="ant-typography">{{ ite.title }} : &nbsp;{{ item[ite.key] }}</span>
+ <span class="ant-typography" *ngIf="ite!=='区域'">{{ ite.title }} : &nbsp;{{ item[ite.key] }}</span>
+ <span class="ant-typography" *ngIf="ite==='区域'">
+ {{ ite.title }} : &nbsp;
+ <span style="display: inline-block" *ngFor="let items of item[ite.key]">{{ items }}&nbsp;&nbsp;&nbsp;&nbsp;</span>
+ </span>
</div>
</nz-list-item>
</ng-template>