wux-weapp
Version:
一套组件化、可复用、易扩展的微信小程序 UI 组件库
38 lines (36 loc) • 860 B
JavaScript
import ad from '../index/ad'
ad({
data: {
right: [{
text: 'Cancel',
style: 'background-color: #ddd; color: white',
},
{
text: 'Delete',
style: 'background-color: #F4333C; color: white',
}],
left: [{
text: 'Reply',
style: 'background-color: #108ee9; color: white',
},
{
text: 'Cancel',
style: 'background-color: #ddd; color: white',
}],
},
onClick(e) {
console.log('onClick', e.detail)
if (e.detail.data) {
wx.showModal({
title: `The data is ${e.detail.data}`,
showCancel: !1,
})
}
},
onShare() {
console.log('onShare')
},
onCellClick() {
console.log('onCellClick')
},
})