wx:for中 flex-direction: row无效
为何不能横向对齐?
<view wx:for="{{picList}}" class=‘v1’ >
<view class=‘v2’>
<view><image class=‘vimage’ src=’{{item.Pic}}’></image></view>
<view>{{item.text}}</view>
<view>{{item.info}}</view>
</view>
</view>
.v1 {
display: flex;
flex-direction: row;
}
.v2{
width:375rpx
}
.vimage {
width: 375rpx;
height: 260rpx;
}