From f617b3992d7791dc40ee2999621ec08ea6091a9a Mon Sep 17 00:00:00 2001 From: bum12ark Date: Fri, 4 Mar 2022 18:13:11 +0900 Subject: [PATCH] =?UTF-8?q?feat(customer-vue):=20Just=20pickup=20=EB=A7=A4?= =?UTF-8?q?=EC=9E=A5=20=EA=B2=80=EC=83=89=20=ED=8E=98=EC=9D=B4=EC=A7=80=20?= =?UTF-8?q?=EC=A6=90=EA=B2=A8=EC=B0=BE=EA=B8=B0=20=EA=B0=9C=EC=88=98=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 아이콘 형식으로 변경 --- customer-vue/src/views/SearchStore.vue | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/customer-vue/src/views/SearchStore.vue b/customer-vue/src/views/SearchStore.vue index 47c65ee..17c8d5a 100644 --- a/customer-vue/src/views/SearchStore.vue +++ b/customer-vue/src/views/SearchStore.vue @@ -33,7 +33,16 @@ > {{ card.name }} - 거리 : {{ card.distance }} + +
+ mdi-heart + {{ card.favoriteCounts }} +
+
+ mdi-map-marker + {{ card.distance }} +
+
@@ -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 }) }); }