更新记录
1.0.0(2023-09-16)
下载此版本
新增单选多选框(hacjy-multiChoice)组件发布
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.8.12 app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
√ |
× |
× |
× |
× |
hacjy-multiChoice -- 单选/多选框
- 支持单选/多选模式
- 支持取消单选项
- 支持网格布局(Grid)和流式布局(Wrap)
- 支持设置字体颜色,边框颜色,背景色等
使用方法
<text class="title">网格布局Grid</text>
<hacjy-multiChoice ref='multiChoice' :col="3" :list="choiceList" @refresh="refreshChoiceData">
</hacjy-multiChoice>
<text class="title">流式布局Wrap</text>
<hacjy-multiChoice ref='multiChoice' :wrap="true" :list="choiceList1" @refresh="refreshChoiceData">
</hacjy-multiChoice>
<text class="title">设置单选</text>
<hacjy-multiChoice ref='multiChoice' :onlyRead="false" :col="3" :radio="true" :list="choiceList2"
@refresh="refreshChoiceData">
</hacjy-multiChoice>