uni.showModal,uni.showToast使用

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({
	title: '发送成功',
	duration: 500
})
原文地址:https://www.cnblogs.com/wasbg/p/14241570.html