This commit is contained in:
2020-12-29 15:14:27 +00:00
parent 5989316eb0
commit ab1c3f2339
3 changed files with 12 additions and 12 deletions

View File

@@ -12,11 +12,9 @@ todo: datatable numbers
currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever currency and possibly other numbers should center justify in their columns or left or whatever it takes to not look so weird but still be comparable / lined up or whatever
OR OR
Maybe it's the column header itself that should be moved Maybe it's the column header itself that should be moved
NOTE: CUrrency has problem, decimal apparently does not...investigate
todo: edit forms are suddenly cramped at the top, look to see if there was a vuetify change and if not needs spacing to decrampify it
compare widget to server version, very different at top
todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing todo: NEXT DEPLOY TO DEVOPS attach a photo from phone, no error just does nothing
worked here locally latest build worked here locally latest build

View File

@@ -221,7 +221,7 @@
</v-toolbar-items> </v-toolbar-items>
</v-app-bar> </v-app-bar>
<v-main> <v-main>
<v-container fluid> <v-container fluid class="my-8">
<transition name="fade" mode="out-in" @after-leave="afterLeave"> <transition name="fade" mode="out-in" @after-leave="afterLeave">
<router-view class="view" :key="$route.fullPath"></router-view> <router-view class="view" :key="$route.fullPath"></router-view>
</transition> </transition>

View File

@@ -115,13 +115,12 @@
</template> </template>
<template v-else-if="c.t == 6"> <template v-else-if="c.t == 6">
<!-- BOOL --> <!-- BOOL -->
<div class="text-center">
<v-icon v-if="c.v === false" small>$ayiSquare</v-icon> <v-icon v-if="c.v === false" small>$ayiSquare</v-icon>
<v-icon v-else-if="c.v === true" small <v-icon v-else-if="c.v === true" small
>$ayiCheckSquare</v-icon >$ayiCheckSquare</v-icon
> >
<v-icon v-else small>$ayiMinus-square</v-icon> <v-icon v-else small>$ayiMinus-square</v-icon>
</div>
</template> </template>
<template v-else-if="c.t == 7"> <template v-else-if="c.t == 7">
<!-- DECIMAL --> <!-- DECIMAL -->
@@ -129,7 +128,7 @@
</template> </template>
<template v-else-if="c.t == 8"> <template v-else-if="c.t == 8">
<!-- CURRENCY --> <!-- CURRENCY -->
<div class="text-right">{{ c.v }}</div> {{ c.v }}
</template> </template>
<template v-else-if="c.t == 9"> <template v-else-if="c.t == 9">
<!-- TAGS --> <!-- TAGS -->
@@ -694,6 +693,9 @@ function buildHeaders(columnData) {
let h = {}; let h = {};
h.text = window.$gz.translation.get(cm.cm); h.text = window.$gz.translation.get(cm.cm);
h.value = "columns.c" + i.toString(); //+".v"; h.value = "columns.c" + i.toString(); //+".v";
if (i == 0) {
h.align = "start";
}
ret.push(h); ret.push(h);
} }