28 lines
496 B
JavaScript
28 lines
496 B
JavaScript
|
|
const imageCdn = 'https://tdesign.gtimg.com/mobile/demos';
|
||
|
|
const swiperList = [
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
`${imageCdn}/swiper2.png`,
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
`${imageCdn}/swiper2.png`,
|
||
|
|
`${imageCdn}/swiper1.png`,
|
||
|
|
];
|
||
|
|
|
||
|
|
Component({
|
||
|
|
data: {
|
||
|
|
current: 0,
|
||
|
|
autoplay: false,
|
||
|
|
duration: 500,
|
||
|
|
interval: 5000,
|
||
|
|
swiperList,
|
||
|
|
},
|
||
|
|
|
||
|
|
methods: {
|
||
|
|
onChange(e) {
|
||
|
|
const {
|
||
|
|
detail: { current, source },
|
||
|
|
} = e;
|
||
|
|
console.log(current, source);
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|