更新记录
1.0.0(2023-05-26) 下载此版本
无
平台兼容性
Vue2 | Vue3 |
---|---|
√ | × |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
app-vue app-nvue | √ | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
√ | √ | √ | √ |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | √ | √ | √ |
使用说明
使用案例:
//优惠券状态 true为可用 false为不可以
status: { type: Boolean, default: true },
//优惠券金额
preferential: { type: Number, default: 0 },
//优惠券使用满足条件 0为无门槛
content: { type: Number, default: 0 },
//优惠券截止日期
end_date: { type: String, default: '2023-05-26 12:00:00' }
<template>
<view class="content">
<lxCoupon :preferential="10" :content='2' @onClick="click"/>
<lxCoupon :preferential="10" :status="false" />
</view>
</template>
<script>
import lxCoupon from '@/components/lx-coupon/lx-coupon.vue'
export default {
data() {
return {
}
},
components:{
lxCoupon
},
methods:{
click(){
uni.showToast({
icon: 'none',
title: '你点击了按钮'
})
}
}
}
</script>
<style>
page{
background: #efefef;
}
.content{
padding: 20rpx;
}
</style>