64 lines
1.2 KiB
Vue
64 lines
1.2 KiB
Vue
<script setup>
|
||
defineProps({
|
||
store: {
|
||
type: Object,
|
||
required: true,
|
||
},
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<view class="store-card">
|
||
<image class="store-card__photo" :src="store.image" mode="aspectFill" />
|
||
<text class="store-card__name">{{ store.name }}</text>
|
||
<view class="store-card__info">
|
||
<view class="store-card__row">
|
||
<text>地址:{{ store.address }}</text>
|
||
</view>
|
||
<view class="store-card__row">
|
||
<text>电话:{{ store.phone }}</text>
|
||
</view>
|
||
<view class="store-card__row">
|
||
<text>营业时间:{{ store.hours }}</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.store-card {
|
||
width: 650rpx;
|
||
margin: 22rpx auto 0;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.store-card__photo {
|
||
width: 650rpx;
|
||
height: 324rpx;
|
||
border-radius: 20rpx;
|
||
}
|
||
|
||
.store-card__name {
|
||
display: block;
|
||
margin-top: 24rpx;
|
||
margin-left: 10rpx;
|
||
color: #ffffff;
|
||
font-size: 32rpx;
|
||
line-height: 44rpx;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.store-card__info {
|
||
width: 584rpx;
|
||
margin-top: 12rpx;
|
||
margin-left: 10rpx;
|
||
}
|
||
|
||
.store-card__row {
|
||
margin-top: 0;
|
||
color: #ffffff;
|
||
font-size: 24rpx;
|
||
line-height: 40rpx;
|
||
}
|
||
</style>
|