wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
28 lines (24 loc) • 525 B
JavaScript
import ad from '../index/ad'
ad({
data: {
buttons: [{
type: 'balanced',
block: true,
text: '确定',
},
{
type: 'light',
block: true,
text: '返回',
}],
},
onClick(e) {
console.log(e)
const { index } = e.detail
index === 0 && wx.showModal({
title: 'Thank you for your support!',
showCancel: !1,
})
index === 1 && wx.navigateBack()
},
})