|
|
|
|
@ -40,8 +40,7 @@
|
|
|
|
|
<ion-grid>
|
|
|
|
|
<ion-row>
|
|
|
|
|
<ion-col>
|
|
|
|
|
<div *ngIf="pInformation && pInformation != '' " class="tipsPadding">{{pInformation}}
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="pInformation && pInformation != '' " class="tipsPadding">{{pInformation}}</div>
|
|
|
|
|
</ion-col>
|
|
|
|
|
</ion-row>
|
|
|
|
|
|
|
|
|
|
@ -49,10 +48,16 @@
|
|
|
|
|
<!-- NOT ADDRESS & BASIC_DETAILS -->
|
|
|
|
|
<ion-col
|
|
|
|
|
*ngIf="getPassNotificationDetails?.REQUEST_TYPE != 'ADDRESS' && getPassNotificationDetails?.REQUEST_TYPE != 'BASIC_DETAILS' ">
|
|
|
|
|
<div *ngIf="notificationBodyRes?.length <= 0 ">
|
|
|
|
|
|
|
|
|
|
<div *ngIf="showInformation">
|
|
|
|
|
<p>{{'worklist, loading'| translate}} <img style="width: 3%;" src="../assets/icon/progress-loading.gif"/></p>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="notificationBodyRes?.length > 0 ">
|
|
|
|
|
|
|
|
|
|
<div class="no-data-div" *ngIf="notificationBodyRes?.length === 0 && !showInformation">
|
|
|
|
|
<p>{{ 'general, empty' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="notificationBodyRes?.length > 0">
|
|
|
|
|
<ion-card *ngFor="let item of notificationBodyRes;let i=index; "
|
|
|
|
|
style="width: 91%;">
|
|
|
|
|
<ion-card-content *ngIf="item.Collection_Notification.length > 0">
|
|
|
|
|
@ -126,6 +131,13 @@
|
|
|
|
|
<!-- IF BASIC_DETAILS -->
|
|
|
|
|
<ion-col *ngIf="getPassNotificationDetails?.REQUEST_TYPE == 'BASIC_DETAILS' ||
|
|
|
|
|
getPassNotificationDetails?.REQUEST_TYPE == 'ADDRESS'">
|
|
|
|
|
<div *ngIf="showInformation">
|
|
|
|
|
<p>{{'worklist, loading'| translate}} <img style="width: 3%;" src="../assets/icon/progress-loading.gif"/></p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="no-data-div" *ngIf="notificationBodyRes?.length === 0 && !showInformation">
|
|
|
|
|
<p>{{ 'general, empty' | translate}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf='notificationBodyRes.length > 0'>
|
|
|
|
|
<ion-card style="width: 91%;">
|
|
|
|
|
<ion-card-content>
|
|
|
|
|
|