wx.showModal里面的content可以不居中显示吗
wx.showModal({ title: '提示', content: '1、xxxxxxxxx\n'+"2、xxxxxxxxxxxxx", success(res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } }) |
今天用wx.showmodal这个函数的时候,在content弹出里的内容,可以不居中显示吗,我记得以前的微信版本里,一开始不是居中显示的,后来就居中显示了,对于我的某些功能要弹出来提示用户注意1、xxxxxxxxxx,2、xxxxxxx,3、xxxxxxxxxxxxxx几点内容的时候,由于长度不一,居中显示了好难看,有没有解决办法,求教