wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
25 lines (21 loc) • 470 B
JavaScript
import ad from '../index/ad'
ad({
data: {
current: [],
},
onLoad() {
this.key = String(Math.floor(Math.random() * 3))
},
onChange(e) {
console.log(e)
if (e.detail.key.indexOf(this.key) !== -1) {
return wx.showModal({
title: 'No switching is allowed',
showCancel: !1,
})
}
this.setData({
current: e.detail.key,
})
},
})