refactor: improve layout and styling in ExtraCommunity.vue
gitea/salix-front/pipeline/pr-test This commit is unstable
Details
gitea/salix-front/pipeline/pr-test This commit is unstable
Details
This commit is contained in:
parent
9be4cdccc0
commit
74033a7bdf
|
@ -505,7 +505,6 @@ watch(route, () => {
|
|||
:props="props"
|
||||
@click="stopEventPropagation($event, col)"
|
||||
:style="col.style"
|
||||
style="padding-left: 5px"
|
||||
>
|
||||
<component
|
||||
:is="tableColumnComponents[col.name].component"
|
||||
|
@ -581,19 +580,20 @@ watch(route, () => {
|
|||
<QBtn dense flat class="link">{{ entry.id }} </QBtn>
|
||||
<EntryDescriptorProxy :id="entry.id" />
|
||||
</QTd>
|
||||
<QTd>
|
||||
<QBtn flat class="link" dense>{{ entry.supplierName }}</QBtn>
|
||||
<SupplierDescriptorProxy :id="entry.supplierFk" />
|
||||
</QTd>
|
||||
<QTd class="text-center">
|
||||
<QIcon
|
||||
v-if="entry.isCustomInspectionRequired"
|
||||
name="warning"
|
||||
color="negative"
|
||||
size="md"
|
||||
:title="t('extraCommunity.requiresInspection')"
|
||||
>
|
||||
</QIcon>
|
||||
<QTd :colspan="2">
|
||||
<div style="display: flex">
|
||||
<span class="link">
|
||||
{{ entry.supplierName }}
|
||||
<SupplierDescriptorProxy :id="entry.supplierFk" />
|
||||
</span>
|
||||
<QIcon
|
||||
v-if="entry.isCustomInspectionRequired"
|
||||
name="warning"
|
||||
color="negative"
|
||||
size="md"
|
||||
:title="t('extraCommunity.requiresInspection')"
|
||||
/>
|
||||
</div>
|
||||
</QTd>
|
||||
<QTd class="text-right">
|
||||
<span>{{ toCurrency(entry.invoiceAmount) }}</span>
|
||||
|
@ -639,9 +639,7 @@ watch(route, () => {
|
|||
&:nth-child(1) {
|
||||
max-width: 65px;
|
||||
}
|
||||
&:nth-child(4) {
|
||||
padding: 0;
|
||||
}
|
||||
padding: 0 5px 0;
|
||||
}
|
||||
thead > tr > th {
|
||||
padding: 3px;
|
||||
|
|
Loading…
Reference in New Issue