@nixweb/nixloc-ui 0.0.244 → 0.0.246

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixweb/nixloc-ui",
3
- "version": "0.0.244",
3
+ "version": "0.0.246",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -1,18 +1,21 @@
1
1
  <template>
2
2
  <div>
3
- <Alert type="danger" v-if="data.listBillet.length > 0">
4
- <span>
5
- ATENÇÃO, existem <b>{{ data.listBillet.length }}</b> boleto(s) em atraso, regularize e evite suspensão do
6
- serviço!
7
- </span>
8
- <div class="div-billet">
9
- <div v-for="billet in data.listBillet">
10
- Boleto vencido em <b>{{ billet.dueDate | moment("DD/MM/YYYY") }}</b> no valor de <b> {{ billet.value |
11
- currency }}</b>!
12
- <span class="title-payment" @click="openBillet(billet)">Efetuar pagamento...</span>
3
+ <div class="div-main" v-if="data.listBillet.length > 0">
4
+ <Alert type="danger">
5
+ <span>
6
+ ATENÇÃO, existem <b>{{ data.listBillet.length }}</b> boleto(s) em atraso, regularize e evite suspensão
7
+ do
8
+ serviço!
9
+ </span>
10
+ <div class="div-billet">
11
+ <div v-for="billet in data.listBillet">
12
+ Boleto vencido em <b>{{ billet.dueDate | moment("DD/MM/YYYY") }}</b>
13
+ no valor de <b> {{ billet.value | currency }}</b>!
14
+ <span class="title-payment" @click="openBillet(billet)">Efetuar pagamento...</span>
15
+ </div>
13
16
  </div>
14
- </div>
15
- </Alert>
17
+ </Alert>
18
+ </div>
16
19
  </div>
17
20
  </template>
18
21
 
@@ -58,6 +61,10 @@ export default {
58
61
  </script>
59
62
 
60
63
  <style scoped>
64
+ .div-main {
65
+ margin-top: 50px;
66
+ }
67
+
61
68
  .div-billet {
62
69
  margin-top: 10px;
63
70
  }