32 lines
577 B
Vue
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> |