首页
归档
笔记
树洞
搜索
友言

文章详情

Interesting People Record Interesting.

/ uniapp / 文章详情

uni.showModal,uni.showToast使用

Sonder
2021-08-10
542字
1分钟
浏览 (3.9k)

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
})
下一篇 / idea 中如何快速输入console.log

🎯 相关文章

💡 推荐文章

🕵️‍♂️ 评论 (0)