uni-app 布尔提示框

uni-app 布尔提示框

  • uni.showModal(OBJECT)
    • 显示模态弹窗,类似于标准 html 的消息框:alert、confirm

OBJECT参数说明

success返回参数说明

示例

uni.showModal({
    title: '提示',
    content: '这是一个模态弹窗',
    success: function (res) {
        if (res.confirm) {
            console.log('用户点击确定');
        } else if (res.cancel) {
            console.log('用户点击取消');
        }
    }
});
posted @ 2020-07-03 15:23  懒惰ing  阅读(651)  评论(0)    收藏  举报