UI in question
This commit is contained in:
parent
7924e7535c
commit
d334a23139
@ -23,7 +23,7 @@
|
|||||||
<input style="border-bottom: 1px solid #dcd9d9;padding-top: 5%;" matInput (keyup)="applyFilter($event.target.value)" placeholder="Search">
|
<input style="border-bottom: 1px solid #dcd9d9;padding-top: 5%;" matInput (keyup)="applyFilter($event.target.value)" placeholder="Search">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<mat-card class="mb-1" *ngFor="let details of dataSource.connect() | async">
|
<mat-card *ngFor="let details of dataSource.connect() | async">
|
||||||
|
|
||||||
<mat-card-title *ngIf="details.applicat_details" style="margin-bottom: 0px;">
|
<mat-card-title *ngIf="details.applicat_details" style="margin-bottom: 0px;">
|
||||||
<div fxLayout="row" fxFlex="100">
|
<div fxLayout="row" fxFlex="100">
|
||||||
@ -32,12 +32,12 @@
|
|||||||
<span style="font-size: 13px;" >{{details.lender_full_name}}({{details.lender_applicant_id}})</span><br>
|
<span style="font-size: 13px;" >{{details.lender_full_name}}({{details.lender_applicant_id}})</span><br>
|
||||||
</div>
|
</div>
|
||||||
<div fxFlex="45" style="text-align:right;">
|
<div fxFlex="45" style="text-align:right;">
|
||||||
<button mat-raised-button mat-button-sm mat-icon-button class="mr-1 hover-icon" type="button" (click)="pdAllocationTo(details)"><mat-icon>group_add</mat-icon></button>
|
<button mat-raised-button mat-button-sm mat-icon-button class="mr-1 hover-icon" type="button" (click)="pdAllocationTo(details)"><mat-icon>verified_user</mat-icon></button>
|
||||||
<button mat-raised-button mat-button-sm mat-icon-button class=" hover-icon" type="button" (click)="scheduleDetails(details)"><mat-icon>schedule</mat-icon></button>
|
<button mat-raised-button mat-button-sm mat-icon-button class=" hover-icon" type="button" (click)="scheduleDetails(details)"><mat-icon>schedule</mat-icon></button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</mat-card-title>
|
</mat-card-title>
|
||||||
<mat-card-content class="mb-1" style="padding: 0% 0% 0% 6%;">
|
<mat-card-content style="padding: 0% 0% 0% 7%;">
|
||||||
|
|
||||||
<span class="hover-icon"><i *ngIf="details.city_name" class="fa-1x fa fa-map-marker"> </i>{{details.city_name}}/{{details.state_name}}-{{details.pincode}}</span> <br>
|
<span class="hover-icon"><i *ngIf="details.city_name" class="fa-1x fa fa-map-marker"> </i>{{details.city_name}}/{{details.state_name}}-{{details.pincode}}</span> <br>
|
||||||
<span *ngIf="details.product_abbr">{{details.product_abbr}}/{{details.subproduct_abbr}}</span><br>
|
<span *ngIf="details.product_abbr">{{details.product_abbr}}/{{details.subproduct_abbr}}</span><br>
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
{{master.pd_date_of_initiation}}
|
{{master.pd_date_of_initiation}}
|
||||||
</div>
|
</div>
|
||||||
<div *ngFor="let master of pdMasterData" class="ml-xs mr-xs pt-1" fxFlex="25" style="text-align:right;" >
|
<div *ngFor="let master of pdMasterData" class="ml-xs mr-xs pt-1" fxFlex="25" style="text-align:right;" >
|
||||||
<button *ngIf="master.pd_type_name" mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="pdAllocationTo(master)"><mat-icon>group_add</mat-icon></button>
|
<button *ngIf="master.pd_type_name" mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="pdAllocationTo(master)"><mat-icon>verified_user</mat-icon></button>
|
||||||
<button *ngIf="master.pd_type_name" mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="scheduleDetails(master)"><mat-icon>schedule</mat-icon></button>
|
<button *ngIf="master.pd_type_name" mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="scheduleDetails(master)"><mat-icon>schedule</mat-icon></button>
|
||||||
<button mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="getPDStart(viewID)"><mat-icon>question_answer</mat-icon></button>
|
<button mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="getPDStart(viewID)"><mat-icon>question_answer</mat-icon></button>
|
||||||
<button mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="loadPdListCompoent()"><mat-icon>close</mat-icon></button>
|
<button mat-raised-button mat-icon-button class="mr-1 mb-1 hover-icon" type="button" (click)="loadPdListCompoent()"><mat-icon>close</mat-icon></button>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<form [formGroup]="_editquestionAnswerForm" (submit)="onSubmit()">
|
<form [formGroup]="_editquestionAnswerForm" (submit)="onSubmit()">
|
||||||
<div formArrayName="temp_questions" class="example-full-width">
|
<div formArrayName="temp_questions" class="example-full-width">
|
||||||
<table>
|
<table style="width:100%">
|
||||||
<tr *ngFor="let ques of _editquestionAnswerForm.controls.temp_questions['controls']; let i=index ; let last = last;">
|
<tr *ngFor="let ques of _editquestionAnswerForm.controls.temp_questions['controls']; let i=index ; let last = last;">
|
||||||
<td>
|
<td>
|
||||||
<mat-card>
|
<mat-card>
|
||||||
|
|||||||
@ -1,13 +1,11 @@
|
|||||||
<div *ngIf="listView">
|
<div *ngIf="listView">
|
||||||
<!--========================== Template List View-->
|
<!--========================== Template List View-->
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<mat-card>
|
<mat-card>
|
||||||
<mat-card>
|
|
||||||
|
|
||||||
<div class="p-1" fxLayout="row" fxLayout.xs="column" fxLayoutWrap fxLayoutAlign="center none">
|
<div class="p-1" fxLayout="row" fxLayout.xs="column" fxLayoutWrap fxLayoutAlign="center none">
|
||||||
<div fxFlex="80%">
|
<div fxFlex="80%">
|
||||||
<mat-card-title><span style="font-size:1.2rem"> Template Master</span></mat-card-title>
|
<mat-card-title><span style="font-size:24px"> Template Master</span></mat-card-title>
|
||||||
|
|
||||||
|
|
||||||
<!--<form [formGroup]="filterFormGroupCtrl">
|
<!--<form [formGroup]="filterFormGroupCtrl">
|
||||||
@ -25,7 +23,6 @@
|
|||||||
<!--<button mat-stroked-button color="primary" (click)="addNewQuestion()">Add Questions</button>-->
|
<!--<button mat-stroked-button color="primary" (click)="addNewQuestion()">Add Questions</button>-->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</mat-card>
|
|
||||||
<ng-container *ngIf="templateList.length > 0">
|
<ng-container *ngIf="templateList.length > 0">
|
||||||
<div style="padding: 0 12px;">
|
<div style="padding: 0 12px;">
|
||||||
<mat-card class="product-card" *ngFor="let template of dataSource.connect() | async">
|
<mat-card class="product-card" *ngFor="let template of dataSource.connect() | async">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user