popover.component.html
1.31 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
<div class="card-body">
<div class="row">
<div class="col text-left">
<p class="h5 card-title">
Este producto forma parte<br>
de Combos y Promociones
</p>
</div>
</div>
<div class="overflow-scroll popover-size pr-2">
<div
class="row my-2"
*ngFor="let promo of popoverContent">
<div class="col text-dark">
<div class="bg-white rounded-sm p-2 px-3">
<div class="row justify-content-between">
<div class="col-auto text-left">
<p class="h5 font-weight-bold mb-0">{{promo.nombrePromo}}</p>
<p
class="h6 mb-0"
*ngFor="let producto of promo.productos">
{{producto.DetArt}}
</p>
</div>
<div class="col-auto text-right align-self-end">
<p class="h4 font-weight-bold mb-0">{{28 | currency}}</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mt-3 justify-content-end">
<div class="col-auto">
<button
type="button"
class="btn btn-sm btn-light shadow"
(click)="hide()">
<span class="pr-2">No, gracias</span>
<i class="fa fa-times text-danger" aria-hidden="true"></i>
</button>
</div>
</div>
</div>