在iPhone11 手机上面无法正常显示按钮中的文字内容,
function createUserInfoButton(text, left, top, fontsize) {
return wx.createUserInfoButton({
type: 'text',
text: text,
style: {
left: left,
top: top,
width: 200,
height: 40,
lineHeight: 40,
// backgroundColor: '#ff0000',
color: 'white',
textAlign: 'center',
fontSize: fontsize,
}
});
}