- 小程序非直连商户无法授权?强制接入发货管理?
小程序强制要求电商平台接入发货管理模块 并且需要给商户号授权 支付我们接入的是第三方 现在是无法授权 支付就被封了?大家都是怎么处理的 [图片]
07-08 - 解绑商户号审核多久啊?
小程序主体变更 现在变更申请已经确认通过 解绑申请也确认了 就等解绑审核 怎么一直不通过啊?? 通过后我怎么确认主体变更啊
04-19 - 请问如何投诉审核人员?
app 在其他平台都已经上架成功 就开放平台要求要求对 规矩多 提交资料时也没有个示例图 详细说明 提交都就这样不行 那样不行的 什么软著 icp 资料都提交了 就咬着什么截图不规范不放 有问题不能一次说完? 提交一次打回一次 还没有客服 他妈的 我在其他应用市场都能顺利上架 就开放平台喜欢刁难人 怪不得现在都对微信体系十分不满
03-29 - video 小程序 黑屏 及全屏bug 同层渲染 异步事件
<view v-if="isPlay"> <image class="poster-image" :src="courseList.video[playIndex].img" mode="aspectFill" ></image> <!-- 封面图--> <view class="poster gui-flex gui-align-items-center gui-justify-content-center" > <text @click="palys()" class="gui-icons"></text> </view> <!--播放图标--> </view> <video @tap="handlePay" show-casting-button v-show="isPlay == false" id="myVideo" :show-center-play-btn="false" class="gui-course-video" @fullscreenchange="fullscreenchange" :src="courseList.video[playIndex].url" controls ></video> this.videoContext = uni.createVideoContext("myVideo", this); fullscreenchange(e) { const isFullScreen = e.detail.fullScreen; if (isFullScreen) { this.isPlay = false; this.videoContext.requestFullScreen({ direction: 90 }); this.videoContext.play(); console.log("video进入全屏11"); console.log(this.isPlay, "--console.log( this.isPlay )"); console.log(this.videoContext, "this.videoContext"); } else { console.log("video退出全屏"); console.log(this.videoContext, "this.videoContext"); } }, handlePay() { if (this.isPlay) { this.videoContext.play(); } else { this.videoContext.exitFullScreen(); this.videoContext.pause(); } this.isPlay = !this.isPlay; }, async palys() { this.isPlay = false; await this.videoContext.play(); }, 1.在开发者工具中 黑屏但有声音 打包后就没有问题了 为什么??也查过视频格式及编码问题! 2.给video 添加tap 事件 达到点击屏幕播放/暂停 app没问题 但是小程序中发现 tap事件与点击全屏按钮 纯在冲突!!如果不处理fullscreenchange 会导致整个界面旋转90度 3.通过处理fullscreenchange事件处理发现 点击全屏也触发了点击事件 虽然通fullscreenchange设置视频组件显示及播放可以解决页面被旋转90度的问题 但是体验不好会闪一哈 4.排查事件 层级关系(怀疑是节点直接的层级关系导致的) 时发现开发者工具无法显示video的内部节点 无法查看 微信开发者工具:(没有找到显示 shadow-root开关) [图片] 谷歌浏览器: [图片]
2023-08-09 - 社区富文本无法输入!!!!会被自动清理!!
x
2023-08-09 - onShareAppMessage 取消分享
当用户点击分享时 有些业务逻辑需要判断 按照官方的返回 promise reject中断 判断登录时 好友弹框和自己的弹框一起被弹出来 分享没有被中止 报错 [图片] onShareAppMessage(res) { let that = this; let promise = new Promise(async (resolve, reject) => { console.log(!this.isLogin,'!this.isLogin') if (!this.isLogin) { reject(); await this.$ui.showModal({ title: "欢迎光临", content: "?", confirmText: "前去登录", success: (res) => { if (res.confirm) { uni.navigateTo({ url: "/pages/auth/login", }); } }, }); } else if (!this.userinfo?.store && !this.userinfo?.agent) { that.$ui.showModal({ title: "", content: "", confirmText: "是", success: (res) => { if (res.confirm) { uni.navigateTo({ url: "/pages/agent/apply_agent", }); } else { // 取消的相关操作 uni.navigateBack(); } }, }); reject(); } else { // 判断邀请名额是否用完 if (that.userinfo.leftConsumerInvites == 0) { that.$ui.showModal({ title: "", content: "", showCancel: false, success: (res) => { uni.navigateBack(); }, }); reject(); } else { resolve({ title: that.goods.title, type: 0, imageUrl: "https://mall-oss.gszjxtpt.com/mall/icon/%E5%95%86%E5%93%81%EF%BC%88%E5%88%86%E4%BA%AB%E5%8D%A1%E7%89%87%EF%BC%89.png", }); } setTimeout(() => { debugger; return { title: "", type: 0, promise, path: "/pages/mall/goods_detail/goods_detail?inviteId=" + that.userinfo.userId + "&goodsId=" + that.goodsId, }; }, 1000); } }); },
2023-06-23 - send-coupon组件不能在自定义组件中使用
经测试 send-coupon不能再页面中引用的组件中使用 页面组件中点击插件无反应 这个太扯淡了吧
2023-03-31 - 静态网站使用 wx-open-launch-weapp 无反应?
通过开发者控制台发现拿到权限没问题 就是不跳转[图片]
2023-03-28 - 控制台报错?
Error in data(): "TypeError: Cannot read property 'guid' of undefined" Error in mounted hook: "TypeError: this.$uGetRect is not a function"
2021-05-23 - 在canvas.draw回调内调用canvasToTempFilePath生成图片不完整?
ctx.draw(false, function() { console.log(w, h, "canvasToTempFilePath") setTimeout(function () { wx.canvasToTempFilePath({ width: w, height: h, fileType: 'jpg', canvasId: `bgcavas${bgId}`, success: function (res) { wx.getImageInfo({ src: res.tempFilePath, success: info => { console.log(info, "info") } }) that.setData({ bgImg: res.tempFilePath }); }, complete: res => { if (res.errMsg == 'canvasToTempFilePath:ok') { that.setData({ bgImg: res.tempFilePath }) } else { console.error('cavas 绘制图片错误') } } }, that) }, 3000) }); //开始绘制 [图片]这是cavas绘制的图片 [图片]使用api保存后的图片
2020-06-28