From d98a250a76762547bb250c24ced735c8db26267f Mon Sep 17 00:00:00 2001 From: oat_dev Date: Tue, 11 Jun 2024 15:12:33 +0700 Subject: [PATCH] feat: total product UI --- public/blank-image.png | Bin 0 -> 731 bytes .../TotalProductCardComponent.vue | 45 ++++++++++++++++++ .../TotalProductComponent.vue | 20 ++++++++ src/components/ItemCard.vue | 2 + 4 files changed, 67 insertions(+) create mode 100644 public/blank-image.png create mode 100644 src/components/04_product-service/TotalProductCardComponent.vue create mode 100644 src/components/04_product-service/TotalProductComponent.vue diff --git a/public/blank-image.png b/public/blank-image.png new file mode 100644 index 0000000000000000000000000000000000000000..08bb3fc5be650306b63e5b8ccaacadd6b41df66a GIT binary patch literal 731 zcmeAS@N?(olHy`uVBq!ia0vp^X&}tO3?%s&MFM~nV{wqX6XVU3I`u#fXMsm#F#`j) zFbFd;%$g$s6l@Ie32_C|1_c2?WK)7e|-?)t5vV7lu0kO)CnssE9Bs0&>HQO2P~Z zLV#Mp=7)h5gDe6fi-L#-^N?_$BeY9`{DK)21SY)yKVQKh-eJLh0Rx8wgMjx14eReO zINvZqpg|#FLA}HJ`|tbb-(RngZ>;hh=*c~vE{-7;bKc&F^*>}F!uFu-B9C*21*bso z3$b;7{?{MlUaZuq=HhyUKP2Ez`tgYKFOzy_Z4cjIT5IuocbRjSe5MeOgh9fA21aH! z5aUa%-5TS*Dc;8>8n59rr52^ig ze5P!voz(Vi5*t^aIbJi-`e{e&19RKUyZr6V+%1=ss_!xUKTkF9{5xN!xTk&Xp5NWx zG_5$ArmwX~xBb<{9jD$sEjL`WJ?8SVtum8z`S`wX3cbZ)<@w@wM=W4HY|5-yd?}y1~EQMLB3e>W`xVniq`z zB(Y3nl1&cc0g}Z9xraKocb$2~m)7~xcGjLtEb5|?54ZZ?^!lH8Hta}pi^Vf7VcAc! m|J5--!WbObXZEMsF~0kdlYaY}>?&aNGkCiCxvX +import { ref } from 'vue'; +import AppBox from 'components/app/AppBox.vue'; + + + + + diff --git a/src/components/04_product-service/TotalProductComponent.vue b/src/components/04_product-service/TotalProductComponent.vue new file mode 100644 index 00000000..836a2aac --- /dev/null +++ b/src/components/04_product-service/TotalProductComponent.vue @@ -0,0 +1,20 @@ + + diff --git a/src/components/ItemCard.vue b/src/components/ItemCard.vue index c60abaf8..05b96579 100644 --- a/src/components/ItemCard.vue +++ b/src/components/ItemCard.vue @@ -5,6 +5,7 @@ defineProps<{ icon: string; text: string; color: string; + changeColor?: boolean; }>(); @@ -26,6 +27,7 @@ defineProps<{ :icon="icon" width="64px" :class="`${$q.dark.isActive ? '' : 'app-text-muted'}`" + :color="changeColor ? color : ''" />