forked from verdnatura/salix-front
Reviewed-on: verdnatura/salix-front#1047 Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
commit
559ee5416a
|
@ -57,7 +57,7 @@ const travelKgPercentages = ref([]);
|
|||
const tableColumnComponents = {
|
||||
id: {
|
||||
component: QBtn,
|
||||
attrs: { flat: true, color: 'primary' },
|
||||
attrs: { flat: true, color: 'primary', dense: true },
|
||||
},
|
||||
cargoSupplierNickname: {
|
||||
component: QBtn,
|
||||
|
@ -178,6 +178,7 @@ const columns = computed(() => [
|
|||
align: 'left',
|
||||
showValue: false,
|
||||
sortable: true,
|
||||
style: 'min-width: 170px;',
|
||||
},
|
||||
{
|
||||
label: t('globals.packages'),
|
||||
|
@ -237,7 +238,7 @@ const columns = computed(() => [
|
|||
format: (value) => toDate(value),
|
||||
},
|
||||
{
|
||||
label: t('globals.wareHhuseIn'),
|
||||
label: t('globals.warehouseIn'),
|
||||
field: 'warehouseInName',
|
||||
name: 'warehouseInName',
|
||||
align: 'left',
|
||||
|
@ -506,7 +507,7 @@ const getColor = (percentage) => {
|
|||
:key="col.name"
|
||||
:props="props"
|
||||
@click="stopEventPropagation($event, col)"
|
||||
auto-width
|
||||
:style="col.style"
|
||||
>
|
||||
<component
|
||||
:is="tableColumnComponents[col.name].component"
|
||||
|
@ -581,7 +582,7 @@ const getColor = (percentage) => {
|
|||
}"
|
||||
>
|
||||
<QTd>
|
||||
<QBtn flat class="link">{{ entry.id }} </QBtn>
|
||||
<QBtn dense flat class="link">{{ entry.id }} </QBtn>
|
||||
<EntryDescriptorProxy :id="entry.id" />
|
||||
</QTd>
|
||||
<QTd>
|
||||
|
@ -637,6 +638,18 @@ const getColor = (percentage) => {
|
|||
|
||||
:deep(.q-table) {
|
||||
border-collapse: collapse;
|
||||
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
||||
tbody tr td {
|
||||
&:nth-child(1) {
|
||||
max-width: 65px;
|
||||
}
|
||||
&:nth-child(4) {
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.q-td :deep(input) {
|
||||
|
@ -684,7 +697,6 @@ const getColor = (percentage) => {
|
|||
width: max-content;
|
||||
}
|
||||
</style>
|
||||
|
||||
<i18n>
|
||||
en:
|
||||
searchExtraCommunity: Search for extra community shipping
|
||||
|
|
Loading…
Reference in New Issue