31 lines
548 B
JavaScript
31 lines
548 B
JavaScript
const imageCdn = 'https://tdesign.gtimg.com/mobile/demos';
|
|
const swiperList = [
|
|
{
|
|
value: `${imageCdn}/swiper1.png`,
|
|
ariaLabel: '图片1',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper2.png`,
|
|
ariaLabel: '图片2',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper1.png`,
|
|
ariaLabel: '图片1',
|
|
},
|
|
{
|
|
value: `${imageCdn}/swiper2.png`,
|
|
ariaLabel: '图片2',
|
|
},
|
|
];
|
|
|
|
Component({
|
|
data: {
|
|
current: 3,
|
|
autoplay: true,
|
|
duration: 500,
|
|
interval: 5000,
|
|
swiperList,
|
|
navigation: { type: '', showControls: true },
|
|
},
|
|
});
|