confirmacion.component.html
2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<div class="bg-primary rounded">
<div class="modal-header">
<img
draggable="false"
ondragstart="return false;"
(contextmenu)="false"
(click)="close()"
class="btn-effect icon-30 mt-2 mr-2 position-absolute right-0 top-0 z-index"
src="assets/img/icono-cancelar-blanco.svg">
<div class="row no-gutters w-100 justify-content-between">
<div class="col align-self-center">
<p *ngIf="titleMessage" class="h3 text-white">{{titleMessage}}</p>
</div>
<div *ngIf="imagenPath" class="col-4 px-3 pt-3 align-self-center">
<img
draggable="false"
ondragstart="return false;"
(contextmenu)="false"
src="{{urlImagenes}}{{imagenPath}}"
onerror="this.src='assets/img/imagen-no-encontrada.jpg'"
class="d-block mx-auto img-fluid rounded-circle">
</div>
</div>
</div>
<div class="modal-body">
<div class="row justify-content-between mx-0 w-100">
<div class="col-7 col-md-8 pl-0 align-self-center">
<p *ngIf="footerMessageFirst" class="text-white"><small>{{footerMessageFirst}}</small></p >
<p *ngIf="footerMessageSecond" class="h1 text-white">{{footerMessageSecond}}</p>
</div>
<div class="col-5 col-md-4 align-self-center">
<div
class="row justify-content-between bg-white badge-pill btn-effect"
*ngIf="footerConfirmation"
(click)="confirmar()">
<div class="col-auto px-0 align-self-center text-primary pl-3">
<p class="font-weight-bold">{{footerConfirmation | currency}}</p>
</div>
<div class="col-auto px-0">
<img
draggable="false"
ondragstart="return false;"
(contextmenu)="false"
class="d-block ml-auto my-1 icon-20"
src="assets/img/ir-color.svg">
</div>
</div>
<div
*ngIf="footerClose"
class="row justify-content-center bg-white badge-pill btn-effect mt-2"
(click)="close()">
<div class="col-auto px-0 ml-auto">
<p class="font-weight-bold text-primary">{{footerClose}}</p>
</div>
<i class="fas fa-undo-alt text-info ml-auto my-auto"></i>
</div>
</div>
</div>
</div>
</div>