forked from verdnatura/salix-front
refs #6353 remove rating
This commit is contained in:
parent
2148c18952
commit
334b4dc928
|
@ -51,13 +51,6 @@ const dialog = ref(null);
|
||||||
:value="item?.[`value${index + 4}`]"
|
:value="item?.[`value${index + 4}`]"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<QRating
|
|
||||||
:model-value="item.stars"
|
|
||||||
icon="star"
|
|
||||||
icon-selected="star"
|
|
||||||
color="primary"
|
|
||||||
readonly
|
|
||||||
/>
|
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<div class="price">
|
<div class="price">
|
||||||
<p>{{ item.available }} {{ t('to') }} {{ item.price }}</p>
|
<p>{{ item.available }} {{ t('to') }} {{ item.price }}</p>
|
||||||
|
@ -72,7 +65,8 @@ const dialog = ref(null);
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</div>
|
</div>
|
||||||
<p v-if="item.priceKg" class="price-kg">
|
<p v-if="item.priceKg" class="price-kg">
|
||||||
{{ t('price-kg') }} {{ toCurrency(item.priceKg) || DEFAULT_PRICE_KG }}
|
{{ t('price-kg') }}
|
||||||
|
{{ toCurrency(item.priceKg) || DEFAULT_PRICE_KG }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue