forked from verdnatura/salix-front
Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix-front
This commit is contained in:
commit
742b77e4e9
|
@ -89,10 +89,10 @@ module.exports = configure(function (ctx) {
|
||||||
open: true, // opens browser window automatically
|
open: true, // opens browser window automatically
|
||||||
proxy: {
|
proxy: {
|
||||||
'/api': {
|
'/api': {
|
||||||
target: 'http://localhost:3000',
|
target: 'http://0.0.0.0:3000',
|
||||||
logLevel: 'debug',
|
logLevel: 'debug',
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
secure: false,
|
secure: false
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
export default function (value, symbol = 'EUR', fractionSize = 2) {
|
export default function (value, symbol = 'EUR', fractionSize = 2) {
|
||||||
if (value == null || value === '') return;
|
if (value == null || value === '') value = 0;
|
||||||
|
|
||||||
const { locale } = useI18n();
|
const { locale } = useI18n();
|
||||||
|
|
||||||
|
|
|
@ -177,6 +177,8 @@ function stateColor(code) {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.descriptor {
|
.descriptor {
|
||||||
|
max-width: 256px;
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -182,6 +182,8 @@ async function fetch() {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.descriptor {
|
.descriptor {
|
||||||
|
max-width: 256px;
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -171,6 +171,8 @@ function stateColor(state) {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.descriptor {
|
.descriptor {
|
||||||
|
max-width: 256px;
|
||||||
|
|
||||||
h5 {
|
h5 {
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue