forked from verdnatura/salix-front
refactor: refs #8673 simplify evaNotes display logic in ExtraCommunity.vue
This commit is contained in:
parent
0d1f2f33e0
commit
c1536bd762
|
@ -612,28 +612,11 @@ watch(route, () => {
|
|||
<QTd class="text-right">
|
||||
<span>{{ entry.volumeKg }}</span>
|
||||
</QTd>
|
||||
<QTd :colspan="entry.showEvaNotes ? 4 : 1">
|
||||
<span
|
||||
v-if="entry.showEvaNotes"
|
||||
style="white-space: pre-wrap; word-break: break-word"
|
||||
>
|
||||
<QTd :colspan="5" class="text-right">
|
||||
<span>
|
||||
{{ entry.evaNotes }}
|
||||
</span>
|
||||
</QTd>
|
||||
<QTd v-if="!entry.showEvaNotes" />
|
||||
<QTd v-if="!entry.showEvaNotes" />
|
||||
<QTd v-if="!entry.showEvaNotes" />
|
||||
<QTd>
|
||||
<QBtn
|
||||
v-if="entry.evaNotes"
|
||||
icon="comment"
|
||||
size="md"
|
||||
flat
|
||||
color="primary"
|
||||
@click="entry.showEvaNotes = !entry.showEvaNotes"
|
||||
>
|
||||
</QBtn>
|
||||
</QTd>
|
||||
</QTr>
|
||||
</template>
|
||||
</QTable>
|
||||
|
|
Loading…
Reference in New Issue