更新记录
1.0.1(2023-06-24)
下载此版本
组件优化
1.0.0(2023-06-24)
下载此版本
组件初始化
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.8.0 app-vue app-nvue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
√ |
√ |
√ |
√ |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
cc-scroolCard
使用方法
<!-- dataInfo:滚动卡片数据 swiperIndex:滚动序列 @change:滚动事件-->
<cc-scroolCard :dataInfo="data" :swiperIndex="swiperIndex" @change="swiperChangeClick"></cc-scroolCard>
HTML代码实现部分
<template>
<view class="content">
<!-- dataInfo:滚动卡片数据 swiperIndex:滚动序列 @change:滚动事件-->
<cc-scroolCard :dataInfo="data" :swiperIndex="swiperIndex" @change="swiperChangeClick"></cc-scroolCard>
</view>
</template>
<script>
export default {
data() {
return {
swiperIndex: 0,
data: {
"priceShop": "¥699.0",
"headImgs": ["http://qn.kemean.cn/file/upload/202005/21/1590043402088i2jxb79n.jpg?imageView2/0/w/800",
"http://qn.kemean.cn/file/upload/202005/21/1590043404759qml3zmlm.jpg?imageView2/0/w/800",
"http://qn.kemean.cn/file/upload/202005/21/1590043407501c6o63bmi.jpg?imageView2/0/w/800",
"http://qn.kemean.cn/file/upload/202005/21/1590043410966jwbtkyw1.jpg?imageView2/0/w/800",
"http://qn.kemean.cn/file/upload/202005/21/1590043413622bnysmgy9.jpg?imageView2/0/w/800"
],
"goodsName": "巴黎香奈儿沙龙香水50ml",
"goodsPrice": "¥999.0",
"recommendCodeGoods": "https://www.we123.com/d/file/xcx/2017-08-07/deceda498e19d82d71449f46828e864b.jpg",
},
}
},
methods: {
swiperChangeClick(e) {
this.swiperIndex = e.detail.current
console.log("swiperIndex = " + this.swiperIndex);
}
}
}
</script>
<style>
page{
background: #f1f1f1;
}
.content {
display: flex;
padding-top: 29px;
}
</style>