- 小程序违规限制搜索分享,两次申诉仍然无法解封,该怎么处理?
腾讯客服太傲慢了,不管你说什么,都是机械性的回复。腾讯微信这种垄断性的软件真的不应该存在,随随便便就给你封禁,并且也不告诉你怎么整改,已经清空数据库了仍然不给你解封。现在这种经济环境本来就很艰难,随时面临失业,没日没夜开发个小程序,都没赚钱就把你路给堵死了。 [图片] [图片] [图片]
08-09 - 流量主财务记录一直是提现中,为什么没有到银行账户?
4月份提现的,结算单显示已付款,但是银行一直没到账。[图片]
06-06 - movable-area内添加canvas 2d组件,android端放大绘制坐标会偏移?
movable-area和movable-view组件内添加canvas 2d组件,实现画布缩放绘制功能。双指缩放后再单指绘制,绘制时使用的屏幕坐标,但是坐标偏移的很厉害。android端会出问题,ios端没问题。 代码片段: <movable-area :style="{width:750+'rpx',height:750+'rpx'}"> <movable-view :disabled="allowDrawing" direction="all" @scale="onScale" :scale="!allowDrawing" scale-min="1" scale-max="4" :scale-value="scale"> <image :style="{width:width+'rpx',height:height+'rpx'}" :src="task.list[imageIndex]" :mode="imageMode"></image> <canvas type="2d" canvas-id="canvas" id="canvas" @touchstart="onTouchStart" @touchmove="onTouchMove" @touchend="onTouchEnd" :style="{width:width+'rpx',height:height+'rpx'}"></canvas> </movable-view> </movable-area> mounted() { const query = uni.createSelectorQuery() query.select('#canvas') .fields({ node: true, size: true }) .exec((res) => { this.canvas = res[0].node this.canvasCtx = this.canvas.getContext('2d'); const dpr = uni.getSystemInfoSync().pixelRatio this.canvas.width = res[0].width * dpr this.canvas.height = res[0].height * dpr this.canvasCtx.scale(dpr, dpr) }) }, onTouchStart(e) { var _this = this; console.log("触摸开始:" + e.touches.length); console.log("是否允许画画:"+this.allowDrawing); if (this.allowDrawing) { const pos = e.touches[0] console.log(pos); _this.lineData.push({ style: { color: _this.penLineColor, width: _this.penLineWidth }, // 屏幕坐标 coordinates: [{ type: e.type, x: pos.x, y: pos.y }] }) _this.drawLine() } },
2023-04-03 - 微信小程序发版二次审核超过7*24小时,没有触发预上线,怎么办?
微信小程序发版二次审核超过7*24小时,没有触发预上线,怎么办? [图片]
2023-03-13 - 开发模式和调试模式正常,体验版本看不到页面?
request和dowload域名都已添加,开发模式启用域名验证也可以访问。页面是用的request请求的后台文件内容数据 [图片][图片]
2022-02-17