微信小程序wx.showModal中content换行

content是modal提示框中的提示文字,今天在开发中遇到将提示文字换行的操作具体如下图

微信小程序wx.showModal中content换行_第1张图片

查资料可知通过  '\r\n'  可以实现换行操作,但在开发工具中不换行,可能是BUG

微信小程序wx.showModal中content换行_第2张图片

    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(("用户点击了取消提交检测!"));
          }
        }
      }
    )

 

 

你可能感兴趣的:(微信小程序,小程序)