deming/components/shop/shop-item/index.vue
2020-06-30 18:06:50 +08:00

32 lines
577 B
Vue

<template>
<view class="shop-item">
<image :src="info.goodscn_pic"></image>
<text class="u-line-1">{{ info.gc_name }}</text>
</view>
</template>
<script>
export default {
name:"shopItem",
props: {
info: Object,
}
}
</script>
<style lang="scss" scoped>
.shop-item{
display: flex;
flex-direction: column;
align-items: center;
>image{
width: 80rpx;
height: 80rpx;
border-radius: 50%;
}
>text{
width: 80rpx;
font-size: 24rpx;
color: #333;
margin-top: 14rpx;
}
}
</style>