uni.showModal,uni.showToast使用
Sonder
2021-08-10
542字
1分钟
浏览 (4.5k)
uni.showModal
uni.showModal({
title: '提示',
content: '您已参加并通过本次考试,是否再次进行考试?',
cancelText: "取消", // 取消按钮的文字
confirmText: "开始考试", // 确认按钮文字
showCancel: true, // 是否显示取消按钮,默认为 true
confirmColor: '#f55850',
cancelColor: '#39B54A',
success: (res) => {
if(res.confirm) {
this.gotoPage('/pages/course/testview?cid=' + this.id)
} else {
console.log('else', res)
}
}
})
uni.showToast
uni.showToast({
title: '发送成功',
duration: 500
})