<!--pages/list/list.wxml-->
<text>pages/list/list.wxml</text>
<scroll-view class="v" scroll-y="true">
<view class="v1">1</view>
<view class="v2">2</view>
<view class="v3">3</view>
</scroll-view>
/* pages/list/list.wxss */
.v{
width: 101px;
height: 120px;
}
.v view{
width: 100px;
height: 100px;
text-align: center;
line-height: 100px;
}
.v1{
background-color: aqua;
}
.v2{
background-color: rgb(0, 255, 106);
}
.v3{
background-color: rgb(76, 0, 255);}
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
发个代码片段看看