wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
30 lines (28 loc) • 625 B
JavaScript
Page({
data: {
icon: {
type: 'warn',
color: '#ef473a',
},
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()
},
})