avatar-swiper.js
372 Bytes
// page/subPackage/pages/zeroSell/components/avatar-swiper.js
Component({
/**
* 组件的属性列表
*/
properties: {
list: {
type: Array
}
},
/**
* 组件的初始数据
*/
data: {
indicatorDots: false,
autoplay: true,
interval: 4000,
duration: 2000,
},
/**
* 组件的方法列表
*/
methods: {
}
})