diff --git a/src/assets/css/style.css b/src/assets/css/style.css index a2f284e..ef2ec9c 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -20,6 +20,7 @@ body, height: 100%; overflow: hidden; font-family: 'KaiseiOpti-Medium'; + color: #232323; } @keyframes loading { 0% { diff --git a/src/assets/css/style.less b/src/assets/css/style.less index aa2c38d..1557dc7 100644 --- a/src/assets/css/style.less +++ b/src/assets/css/style.less @@ -22,6 +22,7 @@ body, height: 100%; overflow: hidden; font-family: 'KaiseiOpti-Medium'; + color: #232323; } @keyframes loading { diff --git a/src/assets/icons/digital/Info.svg b/src/assets/icons/digital/Info.svg new file mode 100644 index 0000000..2f8a672 --- /dev/null +++ b/src/assets/icons/digital/Info.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/assets/icons/digital/back.svg b/src/assets/icons/digital/back.svg new file mode 100644 index 0000000..714ef99 --- /dev/null +++ b/src/assets/icons/digital/back.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/assets/icons/digital/document.svg b/src/assets/icons/digital/document.svg new file mode 100644 index 0000000..41fc0db --- /dev/null +++ b/src/assets/icons/digital/document.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/components/CommodityItem.vue b/src/components/CommodityItem.vue index 281c18b..97e58d8 100644 --- a/src/components/CommodityItem.vue +++ b/src/components/CommodityItem.vue @@ -15,14 +15,17 @@ const props = defineProps({ } }) const emit = defineEmits([ - 'addShopping' + 'addShopping', + 'openDetail' ]) let data = reactive({ }) const addShopping = () => { emit('addShopping') } - +const openDetail = () => { + emit('openDetail') +} onMounted(()=>{ }) onUnmounted(()=>{ @@ -32,7 +35,7 @@ const {} = toRefs(data);