- iPhone11 按钮内容不显示
在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, } }); }
06-27 - 调用客服api问题
调用api总是不成功,链接和id是正确的 wx.openCustomerServiceChat({ extInfo: {url: ''}, corpId: '', // success(res) { console.log('Success:', res); }, fail(err) { console.error('Failed:', err); } });
06-23