fix: refs #7566 fixed summary cards and table
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jon Elias 2024-06-13 07:43:49 +02:00
parent 79e84175a6
commit fa55e33b54
3 changed files with 76 additions and 65 deletions

View File

@ -159,9 +159,9 @@ function existSummary(routes) {
margin-top: 2px; margin-top: 2px;
.label { .label {
color: var(--vn-label-color); color: var(--vn-label-color);
width: 8em; width: 9em;
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: wrap;
text-overflow: ellipsis; text-overflow: ellipsis;
margin-right: 10px; margin-right: 10px;
flex-grow: 0; flex-grow: 0;

View File

@ -306,10 +306,8 @@ const creditWarning = computed(() => {
:value="entity.recommendedCredit" :value="entity.recommendedCredit"
/> />
</QCard> </QCard>
<QCard> <QCard class="vn-one">
<div class="header"> <VnTitle :text="t('Latest tickets')" />
{{ t('Latest tickets') }}
</div>
<CustomerSummaryTable /> <CustomerSummaryTable />
</QCard> </QCard>
</template> </template>

View File

@ -171,11 +171,12 @@ const navigateToticketSummary = (id) => {
auto-load auto-load
url="Tickets" url="Tickets"
/> />
<QCard class="vn-one q-py-sm flex justify-between">
<QTable <QTable
:columns="columns" :columns="columns"
:pagination="{ rowsPerPage: 12 }" :pagination="{ rowsPerPage: 12 }"
:rows="rows" :rows="rows"
class="full-width q-mt-md" class="full-width"
row-key="id" row-key="id"
v-if="rows?.length" v-if="rows?.length"
> >
@ -185,7 +186,7 @@ const navigateToticketSummary = (id) => {
<component <component
:is="tableColumnComponents[props.col.name].component" :is="tableColumnComponents[props.col.name].component"
@click="tableColumnComponents[props.col.name].event(props)" @click="tableColumnComponents[props.col.name].event(props)"
class="rounded-borders q-pa-sm" class="rounded-borders"
v-bind="tableColumnComponents[props.col.name].props(props)" v-bind="tableColumnComponents[props.col.name].props(props)"
> >
<template <template
@ -196,8 +197,19 @@ const navigateToticketSummary = (id) => {
props.col.name === 'route' || props.col.name === 'route' ||
props.col.name === 'packages' props.col.name === 'packages'
" "
>
<span
v-if="
props.col.name === 'nickname' ||
props.col.name === 'route'
"
class="link"
> >
{{ props.value }} {{ props.value }}
</span>
<span v-else>
{{ props.value }}
</span>
</template> </template>
<template v-if="props.col.name === 'date'"> <template v-if="props.col.name === 'date'">
<QBadge class="q-pa-sm" color="warning"> <QBadge class="q-pa-sm" color="warning">
@ -232,6 +244,7 @@ const navigateToticketSummary = (id) => {
</QTd> </QTd>
</template> </template>
</QTable> </QTable>
</QCard>
</template> </template>
<i18n> <i18n>