反正就是注册不了,也登录不了!!!
QQ邮箱一直报已被占用1.在公众开放平台想注册,提示被占用 [图片] 2.找回密码提示“该账号是开放平台” 3.在开放平台登录报以下提示,进入死循环!!!!!求解!!!!! [图片]
01-19解决了吗?
weapp-qrcode-canvas-2d二维码是悬浮的,目前本地真机调试没事,体验版二维码悬浮[图片] const query = this.createSelectorQuery() var that = this query.select('#qrcode').fields({node: true}).exec((qrcoderes) => { var canvas = qrcoderes[0].node qrcode({ canvas: canvas, canvasId: 'qrcode', width: util.pxToRpx(125), height: util.pxToRpx(125), padding: 0, text: res.result.activityMacheteMember.writeOffCode, }) // 获取临时路径 wx.canvasToTempFilePath({ canvasId: 'qrcode', canvas: canvas, x: 0, y: 0, width: util.pxToRpx(125), height: util.pxToRpx(125), destWidth: util.pxToRpx(125), destHeight: util.pxToRpx(125), success(res) { that.data.data.activityMacheteMember.tempImg = res.tempFilePath that.setData({ data: that.data.data }) }, fail(res) { console.error(res) } }) }) .qrcode { width: 250rpx; height: 250rpx; margin: 0 auto; display: none; } .canvas_icon { width: 250rpx; height: 250rpx; margin: 0 auto; } 目前真机调试没问题,但是发布到体验版二维码悬浮
2024-03-07