This commit is contained in:
Gdpao
2020-08-04 19:39:31 +08:00
parent f69a82ace5
commit afc7731781
11 changed files with 229 additions and 214 deletions

View File

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