微信小程序 之 toase 弹框

//弹框
wx.showModal({
title: '请选择操作',
content: '删除此日程还是去日程详情页面?',
showCancel: true,
cancelText: "删除",
cancelColor: "#f44a5e",
confirmText: "去详情",
confirmColor: "#000",
success: function (res) {
if (res.confirm) {
// console.log('用户点击确定')
that.GoDetails(event)
} else if (res.cancel) {
//console.log('用户点击取消')
that.delCur(index, indexd, types)
}
}
})

//吐司

wx.showToast({
title: '删除日程失败',
icon: "loading",
duration: 600
})

猜你喜欢

转载自blog.csdn.net/qinlulucsdn/article/details/80279991