diff --git a/src/pages/Wagon/Type/WagonTypeCreate.vue b/src/pages/Wagon/Type/WagonTypeCreate.vue index adfd41049..50be4169c 100644 --- a/src/pages/Wagon/Type/WagonTypeCreate.vue +++ b/src/pages/Wagon/Type/WagonTypeCreate.vue @@ -239,8 +239,8 @@ function exceedMaxHeight(pos) { @@ -357,45 +357,55 @@ function exceedMaxHeight(pos) { justify-content: center; align-items: flex-start; } -.q-card { + +.q-form { width: 70%; } + .q-dialog { .q-card { width: 100%; } } + .wheels { margin-left: 5%; display: flex; justify-content: space-around; } + .wagon-tray { display: flex; height: 6rem; + .position { - width: 15%; + width: 20%; border-right: 1rem solid gray; display: flex; align-items: flex-end; justify-content: flex-end; padding-right: 1rem; } + .shelving { display: flex; width: 75%; + .shelving-half { width: 50%; height: 100%; + .shelving-up { height: 80%; width: 100%; } + .shelving-down { height: 20%; width: 100%; } } + .shelving-divisible { width: 1%; height: 100%; @@ -403,6 +413,7 @@ function exceedMaxHeight(pos) { border-right: 0.5rem dashed grey; } } + .action-button { width: 10%; border-left: 1rem solid gray; diff --git a/src/pages/Wagon/Type/WagonTypeList.vue b/src/pages/Wagon/Type/WagonTypeList.vue index f364da008..bcc3b7ffa 100644 --- a/src/pages/Wagon/Type/WagonTypeList.vue +++ b/src/pages/Wagon/Type/WagonTypeList.vue @@ -5,6 +5,8 @@ import VnPaginate from 'src/components/ui/VnPaginate.vue'; import { useArrayData } from 'src/composables/useArrayData'; import { useI18n } from 'vue-i18n'; import { useRouter } from 'vue-router'; +import CardList2 from 'components/ui/CardList2.vue'; +import VnLv from 'components/ui/VnLv.vue'; const quasar = useQuasar(); const arrayData = useArrayData('WagonTypeList'); @@ -48,43 +50,32 @@ async function remove(row) { auto-load > diff --git a/src/pages/Wagon/WagonCreate.vue b/src/pages/Wagon/WagonCreate.vue index 123e01d36..0bd6f87be 100644 --- a/src/pages/Wagon/WagonCreate.vue +++ b/src/pages/Wagon/WagonCreate.vue @@ -86,9 +86,9 @@ function filterType(val, update) { @@ -176,7 +176,8 @@ function filterType(val, update) { justify-content: center; align-items: flex-start; } -.q-card { + +.q-form { width: 70%; } diff --git a/src/pages/Wagon/WagonList.vue b/src/pages/Wagon/WagonList.vue index 5e512aa92..e936f075b 100644 --- a/src/pages/Wagon/WagonList.vue +++ b/src/pages/Wagon/WagonList.vue @@ -5,6 +5,8 @@ import VnPaginate from 'src/components/ui/VnPaginate.vue'; import { useArrayData } from 'src/composables/useArrayData'; import { useI18n } from 'vue-i18n'; import { useRouter } from 'vue-router'; +import CardList2 from 'components/ui/CardList2.vue'; +import VnLv from 'components/ui/VnLv.vue'; const quasar = useQuasar(); const arrayData = useArrayData('WagonList'); @@ -55,69 +57,42 @@ async function remove(row) { auto-load >