index.js
424 字节
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
classify: [{
img: '/images/icon_03@2x.png',
text: '111'
}, {
img: '/images/icon_03@2x.png',
text: '22'
}],
imgsUrl: ['/images/icon_11@2x.png', '/images/icon_11@2x.png'],
current_page:0
},
swiperCharge(e){
this.setData({
current_page: e.detail.current
})
},
onLoad: function() {
},
})