forked from verdnatura/salix-front
fix: comments
This commit is contained in:
parent
db67fd1e43
commit
3fdad15f21
|
@ -131,7 +131,7 @@ const detailsColumns = ref([
|
|||
auto-load
|
||||
/>
|
||||
<QPage :key="componentKey" class="column items-center q-pa-md">
|
||||
<div class="order-list">
|
||||
<div class="order-list full-width">
|
||||
<div v-if="!orderSummary.total" class="no-result">
|
||||
{{ t('globals.noResults') }}
|
||||
</div>
|
||||
|
@ -213,46 +213,21 @@ const detailsColumns = ref([
|
|||
</span>
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-description="{ value }">
|
||||
<QTd class="description-cell">
|
||||
<FetchedTags
|
||||
:item="value"
|
||||
:max-length="6"
|
||||
class="fetched-tags"
|
||||
/>
|
||||
<div class="row full-width justify-between">
|
||||
<template #body-cell-description="{ row, value }">
|
||||
<QTd>
|
||||
<div
|
||||
class="row column full-width justify-between flex-start"
|
||||
style="align-items: flex-start"
|
||||
>
|
||||
{{ value }}
|
||||
<div v-if="value" class="subName">
|
||||
{{ value.toUpperCase() }}
|
||||
</div>
|
||||
</div>
|
||||
<FetchedTags :item="row.item" :max-length="6" />
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-warehouse="{ value }">
|
||||
<QTd>
|
||||
{{ value }}
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-shipped="{ value }">
|
||||
<QTd>
|
||||
{{ value }}
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-quantity="{ value }">
|
||||
<QTd>
|
||||
{{ value }}
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-price="{ value }">
|
||||
<QTd>
|
||||
{{ value }}
|
||||
</QTd>
|
||||
</template>
|
||||
<template #body-cell-amount="{ value }">
|
||||
<QTd>
|
||||
{{ value }}
|
||||
</QTd>
|
||||
</template>
|
||||
|
||||
<template #body-cell-actions="{ value }">
|
||||
<QTd>
|
||||
<QIcon
|
||||
|
@ -261,7 +236,6 @@ const detailsColumns = ref([
|
|||
size="sm"
|
||||
class="cursor-pointer"
|
||||
@click.stop="confirmRemove(value)"
|
||||
style="margin-left: 40%"
|
||||
>
|
||||
<QTooltip>{{ t('Remove thermograph') }}</QTooltip>
|
||||
</QIcon>
|
||||
|
@ -324,10 +298,6 @@ const detailsColumns = ref([
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
.description-cell {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.subName {
|
||||
text-transform: uppercase;
|
||||
color: var(--vn-label-color);
|
||||
|
|
Loading…
Reference in New Issue