更新记录
1.0.0(2024-01-11)
下载此版本
支持设定商品中奖概率
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
引入组件
import xlPrize from '@/components/xl-prize/xl-prize.vue'
注册组件
components: {
xlPrize
},
使用组件
<xl-prize
:award="award"
@changePrize="@changePrize">
</xl-prize>
参数说明
award:抽奖数据(数组,最多8条)
@changePrize:中奖回调
award数组对象里的chance属性,对应商品中奖概率,范围0-100,整数,数值越大中奖率越高
数据格式
award: [
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_34_47_2.png',
name: '谢谢参与',
chance: 10,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_35_36_10.png',
name: '洗衣机',
chance: 20,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_35_36_10.png',
name: '谢谢参与',
chance: 30,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_34_47_2.png',
name: '笔记本',
chance: 20,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_35_36_10.png',
name: '谢谢参与',
chance: 50,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_34_47_2.png',
name: '电脑',
chance: 10,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_35_36_10.png',
name: '谢谢参与',
chance: 60,
},
{
img: 'https://cdnapp.jixianzhilu.cn/circle_image/2021_06_8_14_35_36_10.png',
name: '冰箱',
chance: 30,
}
]
``