- 企业微信H5中,调用jssdk的扫一扫,扫描不出DataMatrix码
1、ios成功调起扫一扫后,扫描不出DataMatrix码。安卓可以扫出内容。 2、scanType设置了datamatrix格式。没有报错,就是识别不出内容。 scanType: ["datamatrix", "qrCode", "barCode"], 3、DataMatrix码很清晰。 [图片] 4、测试了直接使用企业微信的扫一扫也扫不出内容。 期待效果: ios能够正常扫描出DataMatrix码的内容
2020-11-25 - 小程序着急上线,麻烦加紧审核下,谢谢!
小程序着急上线,麻烦加紧审核下,谢谢!
2019-05-15 - animationend的使用问题
一个元素同时使用小程序animatiion的api和css3的animation动画,动画结束事件“animationend”可以被css3的动画结束触发,而不会被小程序animation的动画结束触发。 请问要怎么才能触发小程序animation接口的animationend事件呢? 以下是代码,使用的是mpvue框架 <template> <div class="barrage"> <div class="barrageBox" :animation="animation" @animationend="animationend"> <div class="barrageBoxInner" > aaaaaaaaaaaaaaa </div> </div> </div> </template> <script> export default { data () { return { animation: '' } }, mounted () { this.showAnimation() }, methods: { showAnimation () { var animation = wx.createAnimation({ duration: 10000 }) animation.translateY(-500).step() animation.translateY(0).opacity(0).step({duration: 0, timingFunction: 'step-start'}) this.animation = animation.export() }, animationend () { console.log('动画结束') } } } </script> <style scoped> .barrage{ position: absolute; top: 0; width: 75%; height: 55%; margin-left: 150rpx; z-index: 9; } .barrage .barrageBox{ position: absolute; bottom: 0; width: auto; height: 70rpx; background: #0d6e7e; border-radius: 10rpx; border: 4rpx solid #243c65; opacity: 0; animation: opacity 3s linear; animation-fill-mode:forwards; } @keyframes opacity { 0% { opacity: 0; } 100% { opacity: 1; } } .barrage .barrageBox .barrageBoxInner{ width: auto; height: 65rpx; padding:0 30rpx; background: #01cee4; border-radius: 10rpx; color:#103665; font-size: 22rpx; text-align: center; line-height: 60rpx; } </style>
2019-04-19 - 《沃森展台对战》小程序审核不通过-急,求助
目前版本的“森展台对战”小程序 主要是服务4月20号的展会现场服务,所以目前提交的整体功能就是扫描现场二维码后直接对战答题,相关功能都已有了。 所有相关整体的运营内容也都有了,不知没审核没通过的其他具体什么原因?由于时间紧迫烦请尽快帮忙查看并告知,谢谢! 你的小程序"沃森展台对战",提审时间2019-04-17 15:49:35,代码发布审核未通过,原因如下: 1:小程序内容不符合规则: (1):小程序页面正式运营数据不完整,无法体验实际服务,请上架完整运营内容再提交审核。(测试环境wifi,IOS11.3.1,微信7.0.3,iPhone 7) 请根据上述原因对小程序进行修改,并重新提交代码审核。
2019-04-18 - 沃森展台对战小程序审核不通过
- 当前 Bug 的表现(可附上截图) 小程序提交审核不通过 - 预期表现 - 复现路径 - 提供一个最简复现 Demo 你的小程序"沃森展台对战",提审时间2019-04-17 15:49:35,代码发布审核未通过,原因如下: 1:小程序内容不符合规则: (1):小程序页面正式运营数据不完整,无法体验实际服务,请上架完整运营内容再提交审核。(测试环境wifi,IOS11.3.1,微信7.0.3,iPhone 7) 请根据上述原因对小程序进行修改,并重新提交代码审核。 不知道是什么原因。要怎么修改?
2019-04-17 - 修改小程序头像失败
修改小程序头像按要求建议用了144*144 的png图片,上传也成功,可以预览效果,但一点击提交就提示“系统错误请稍后再试”,图片没有透明底色.
2018-07-20