@nixweb/nixloc-ui 0.0.243 → 0.0.245

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.243",
3
+ "version": "0.0.245",
4
4
  "description": "Componentes UI",
5
5
  "author": "Fábio Ávila <fabio@nixweb.com.br>",
6
6
  "private": false,
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <div>
2
+ <div class="div-main">
3
3
  <Alert type="danger" v-if="data.listBillet.length > 0">
4
4
  <span>
5
5
  ATENÇÃO, existem <b>{{ data.listBillet.length }}</b> boleto(s) em atraso, regularize e evite suspensão do
@@ -39,7 +39,7 @@ export default {
39
39
  },
40
40
  methods: {
41
41
  getAll() {
42
- const apiUrl = `https://localhost:44347/api/v1/billing/billet/warning-billet-delayed?Any=${this.companyId}`;
42
+ const apiUrl = `https://backend-adm-prod.azurewebsites.net/api/v1/billing/billet/warning-billet-delayed?Any=${this.companyId}`;
43
43
 
44
44
  axios.get(apiUrl)
45
45
  .then(response => {
@@ -58,6 +58,10 @@ export default {
58
58
  </script>
59
59
 
60
60
  <style scoped>
61
+ .div-main {
62
+ margin-top: 50px;
63
+ }
64
+
61
65
  .div-billet {
62
66
  margin-top: 10px;
63
67
  }