uni.showModal({
title: '错误提示',
content: '您输入的信息有误,请重新输入',
showCancel: false,
confirmText: '确定'
})
基本的弹窗提示错误警告的示例代码:
于 2023-04-20 19:29:07 首次发布
uni.showModal({
title: '错误提示',
content: '您输入的信息有误,请重新输入',
showCancel: false,
confirmText: '确定'
})