- 微信公众号设备功能授权配额一直在审核,是否能尽快审批?
原始ID:gh_c9dd225ac4fa,2024-08-29申请,2周了还在审核,是否能加急处理一下,谢谢
09-15 - 微信公众号设备功能授权配额审批能否推进审批下?
原始ID:gh_c9dd225ac4fa
09-13 - 模板消息reach max api daily quota limit,可以申请提升每日调用上限吗?
公众号推送模板消息:reach max api daily quota limit,可以申请提升每日调用上限吗?我们是物联网平台,iot设备很多,用户提醒消息也很多,所以100W的上限导致很多用户收不到提醒,请问有什么解决方案?
08-15 - wx-open-launch-weapp标签打开小程序Android正常IOS不显示怎么办?
vite开发H5通过wx-open-launch-weapp组件点击跳转小程序,Android手机可以正常打开小程序,但是IOS不能正常显示标签。 代码:<template> <div class="container"> <div class="nextBtn"> <wx-open-launch-weapp username="gh_xxxx" :path="pathStr"> <component :is="'script'" type="text/wxtag-template"> <div style=" width: 100%; height: 80px; color: #ffffff; font-size: 18px; margin-top: 12px; " > 下一步 </div> </component> </wx-open-launch-weapp> </div> </div> </template> <script> import { getWxSign } from "@/api/common"; import wx from "weixin-js-sdk"; export default { setup() { let nonceStr = Math.ceil(Date.now() / 1000) + ""; let timestampValue = nonceStr; let urlValue = location.href.split("#")[0]; getWxSign({ nonce: nonceStr, timestamp: timestampValue, url: window.encodeURI(urlValue), }).then((res) => { if (res.code == 0) { wx.config({ debug: false, // 开启调试模式 appId: "wx1xxxxxxxxx", // 必填,公众号的唯一标识 timestamp: timestampValue, // 必填,生成签名的时间戳 nonceStr: nonceStr, // 必填,生成签名的随机串 signature: res.data, // 必填,签名 jsApiList: ["chooseImage"], // 必填,需要使用的JS接口列表,填写一个当前公众号有权限的接口 openTagList: ["wx-open-launch-weapp"], // 可选,需要使用的开放标签列表 }); if (type.value == 1) { pathStr.value = "pages/setWifi/setWifi?serverType=1&method=" + type.value + "&user_name=" + username + "&group=" + group; } else { pathStr.value = "pages/setWifi/setWifi?serverType=0&method=" + type.value + "&user_name=" + username + "&group=" + group; } } else { showConfirmDialog({ title: "获取签名失败", message: res.reason, }); } }); document.title = title.value; const nextLink = () => { showConfirmDialog({ title: "", message: "即将跳转“设备连接”小程序", }) .then(() => { // on confirm }) .catch(() => { // on cancel }); }; return { nextLink, type, username, group, pathStr, }; }, }; </script> 请教如何解决,谢谢
2023-01-13 - this.setData效率低如何优化?
基础库2.18.1,image组件通过this.setData设置src属性data:image/jpeg;base64,大量base64数据刷新图片时,执行需要2-10S,应该如何优化
2022-10-31