1. 轮播图(Slider):
<slider indicator-dots autoplay interval="3000">
<block wx:for="{{imageList}}" wx:key="index">
<swiper-item>
<image src="{{item}}" mode="aspectFill" style="width: 100%; height: 150px;"></image>
</swiper-item>
</block>
</slider>
2. 步进器(Stepper):
<stepper value="{{stepperValue}}" bind:change="onStepperChange"></stepper>
3. 评分(Rate):
<rate value="{{rateValue}}" bind:change="onRateChange"></rate>
4. 日历(Calendar):
<calendar bind:selectDate="onSelectDate"></calendar>
5. 滑动单选框(Switch):
<switch checked="{{switchChecked}}" bind:change="onSwitchChange"></switch>
以上是一些其他常见的 WeUI 组件的简单用法示例。你可以根据实际需求和 WeUI 的文档进一步定制和使用不同类型的组件,以满足项目的需求。在实际开发中,请参考 WeUI 的文档以获取更多配置和功能选项。
转载请注明出处:http://www.zyzy.cn/article/detail/1341/微信小程序