5 回复
我这样写了
<view class="container">
<scroll-view scroll-x="true">
<view class="item-content" wx:for="{{hourly}}" wx:for-item="item">
<view class="title">{{item.temp}}</view>
<view class="content">{{item.text}}</view>
</view>
</scroll-view>
</view>
scroll-view {
width: 100%;
white-space: nowrap;
}
.item-content {
width: 40%;
display: inline-block;
border: 1rpx solid gray;
text-align: center;
}
<view>
<scroll-view scroll-x>
<view style="width: 1000px;display: flex;">
<block wx:for="{{list}}" wx:key="index">
<view style="font-size: 50rpx;">{{item}}</view>
</block>
</view>
</scroll-view>
</view>
