<scroll-view scroll-x="true">
<view class="show-miaosha-item" v-for="(item,index) in miaosha" :key="index">
<view>
<image :src="item.src" mode="aspectFit"></image>
</view>
<view>
<text >{{item.name}}</text>
</view>
<view>
<text>{{item.money}}</text>
</view>
</view>
</scroll-view>
scroll-view{
width: 100%;
height: 272.23rpx;
white-space: nowrap;
margin-left: -27.22upx;
background-color: #fff;
scrollbar:none;
}
.show-miaosha-item{
display: inline-block;
width: 145.19rpx;
height: 145.19rpx ;
margin-left: 18.14upx;
}
.show-miaosha-item view:nth-child(1) image{
width: 100%;
height: 145.19rpx;
border-radius: 5px;
}
.show-miaosha-item view:nth-child(2) text{
font-size: 14px;
}
.show-miaosha-item view:nth-child(3) text{
color: red;
font-size: 25.4upx;
}
miaosha: [
{ src: '/static/index/miaosha.jpg',name:'蔬菜',money:'¥169.6' },
{ src: '/static/index/miaosha.jpg',name:'象牙蚌',money:'¥9.6' },
{ src: '/static/index/miaosha.jpg',name:'瓜果',money:'¥69.6' },
{ src: '/static/index/miaosha.jpg' ,name:'皮皮虾',money:'¥1690.6'},
{ src: '/static/index/miaosha.jpg' ,name:'鲨齿',money:'¥16900.6'},
{ src: '/static/index/miaosha.jpg' ,name:'鲨齿',money:'¥16900.6'},
{ src: '/static/index/miaosha.jpg' ,name:'鲨齿',money:'¥16900.6'}
],
- THE END -
最后修改:2020年6月10日
非特殊说明,本博所有文章均为博主原创。
如若转载,请注明出处:https://www.95app.top/uni-app-scroll-view%e6%a8%aa%e5%90%91/