feat(customer-vue): Just pickup 매장 검색 페이지 즐겨찾기 개수 추가

- 아이콘 형식으로 변경
This commit is contained in:
bum12ark
2022-03-04 18:13:11 +09:00
parent ff0b2e21c4
commit f617b3992d

View File

@@ -33,7 +33,16 @@
></v-img>
<v-card-title>{{ card.name }}</v-card-title>
<v-card-text>
거리 : {{ card.distance }}
<v-row>
<div class="orange--text ms-4">
<v-icon color="orange" dense>mdi-heart</v-icon>
{{ card.favoriteCounts }}
</div>
<div class="grey--text ms-4">
<v-icon dense>mdi-map-marker</v-icon>
{{ card.distance }}
</div>
</v-row>
</v-card-text>
</v-card>
</v-col>
@@ -132,9 +141,10 @@ export default {
stores.forEach( (store) => {
this.cards.push({
storeId: store.storeId,
storeId: store.id,
name: store.name,
distance: store.distance
distance: store.distance,
favoriteCounts: store.favoriteCounts
})
});
}