//index.js //获取应用实例 const app = getApp() Page({ data: { imgUrls:[ "/assets/carousel/1.png", "/assets/carousel/2.png", "/assets/carousel/3.png" ], indicatorDots: false, autoplay: true, interval: 4000, duration: 800, }, swiperChange(e) { const that = this; that.setData({ swiperIndex: e.detail.current, }) }, onLoad: function(){ }, onShareAppMessage: function(){ } })