uni.showModal

12 阅读1分钟
uni.showModal({
    title: '系统提示',
    content: '这是一条错误提示',
    showCancel: false,
});

uni.showModal({
    title: '提示',
    content: '确认删除该条信息吗?',
    success: function(res) {
        if (res.confirm) {

        }
	}
})