<view class="diamond">
<block wx:for="{{diamondArray}}" wx:for-item="item" wx:for-index="index">
<text class="diamond-item">{{item}}</text>
</block>
</view>
<view class="diamond">
<block wx:for="{{diamondArray}}" wx:for-item="item" wx:for-index="index">
<text class="diamond-item">{{item}}</text>
</block>
</view>
.diamond {
display: flex;
flex-direction: column;
align-items: center;
}
.diamond-item {
font-size: 20px;
margin-bottom: 10px;
}

Page({
data: {
diamondArray: [' * ', ' *** ', ' ***** ', '*******', ' ***** ', ' *** ', ' * ']
}
})


502

被折叠的 条评论
为什么被折叠?



