content是modal提示框中的提示文字,今天在开发中遇到将提示文字换行的操作具体如下图
查资料可知通过 '\r\n' 可以实现换行操作,但在开发工具中不换行,可能是BUG
wx.showModal(
{
title: '相关信息',
cancelColor: '#adb5bd',
content:
'姓名:' + this.data.quizzee_name + '\r\n' +
'电话:' + this.data.user_tel + '\r\n' +
'左眼屈光度:' + this.data.Diopter_Left + '\r\n' +
'右眼屈光度:' + this.data.Diopter_Right,
confirmColor: '#4dabf7',
confirmText: '提交检测',
cancelText: '取消',
success(res) {
if (res.confirm) {
that.listenerConfirm()
} else if (res.cancel) {
// modal标签弃用
// that.listenerCancel()
console.log(("用户点击了取消提交检测!"));
}
}
}
)
文章来源地址https://www.toymoban.com/news/detail-535260.html文章来源:https://www.toymoban.com/news/detail-535260.html
到了这里,关于微信小程序wx.showModal中content换行的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!