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