|
|
|
|
@ -25,7 +25,7 @@
|
|
|
|
|
<label *ngIf="dataContant.Value && dataContant.Type != 'table'">{{dataContant.Value}}</label>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataContant.MultipleValue && dataContant.Type == 'list'">
|
|
|
|
|
<label *ngFor="let data of dataContant.MultipleValue">{{data}}</label>
|
|
|
|
|
<label *ngFor="let data of dataContant.MultipleValue">{{data}}<br/></label>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="dataContant.Value && dataContant.Type =='table'">
|
|
|
|
|
@ -166,17 +166,17 @@
|
|
|
|
|
<ion-tab-bar class="tabBar" slot="bottom" style="overflow-x: scroll;">
|
|
|
|
|
|
|
|
|
|
<!-- <ion-tab-button *ngFor='let action of actionBTN' [hidden]="action.isAvailable" > -->
|
|
|
|
|
<ion-tab-button style="max-width: 20%;" *ngFor='let action of actionBTN; let i=index' [hidden]='!action.isAvailable'
|
|
|
|
|
(click)="selectAtion(action.name)">
|
|
|
|
|
<ion-tab-button *ngFor='let action of actionBTN; let i=index' [hidden]='!action.isAvailable'
|
|
|
|
|
(click)="selectAtion(action.name)" [ngClass]="i === 0 ? 'tabs-margin' : ''">
|
|
|
|
|
|
|
|
|
|
<img [src]="action.image">
|
|
|
|
|
<ion-label style="font-size: 11px;">{{action.name}}</ion-label>
|
|
|
|
|
<ion-label style="font-size: 12px;">{{action.name}}</ion-label>
|
|
|
|
|
|
|
|
|
|
</ion-tab-button>
|
|
|
|
|
|
|
|
|
|
<ion-tab-button (click)="skip()" style="max-width: 20%;">
|
|
|
|
|
<ion-tab-button (click)="skip()">
|
|
|
|
|
<img src="../assets/imgs/action-skip.png">
|
|
|
|
|
<ion-label style="font-size: 11px;">Skip</ion-label>
|
|
|
|
|
<ion-label style="font-size: 12px;">Skip</ion-label>
|
|
|
|
|
</ion-tab-button>
|
|
|
|
|
|
|
|
|
|
</ion-tab-bar>
|
|
|
|
|
|