- 微信小程序是从公众号创建出来的修改认证主体信息后会影响原来的公众号吗?
微信小程序是从公众号创建出来的修改认证主体信息后会影响原来的公众号吗?
2023-09-08 - 微信小程序认证改名的时候 这个申请认证昵称是干啥用的 修改了有啥影响吗?
[图片]
2023-09-08 - cover-view
我写了一个弹窗代码是这样的 <!-- 物品类别弹窗 --> <cover-view class="commodity_screen" bindtap="hideModal" wx:if="{{showModalStatus}}"></cover-view> <cover-view animation="{{animationData}}" class="commodity_attr_box" wx:if="{{showModalStatus}}"> <cover-view class='cancel' bindtap='hideModal'>取消</cover-view> <cover-view class='title'>请选择物品品类</cover-view> <cover-view class='sure'>确定</cover-view> <cover-view class='glist'> <cover-view class='list-item item-chose'>食品饮料</cover-view> <cover-view class='list-item'>鲜花</cover-view> <cover-view class='list-item' style='margin-right:0;'>蛋糕</cover-view> <cover-view class='list-item'>其他</cover-view> </cover-view> </cover-view> js里面是这么写的 // 物品类别弹窗 showModal: function () { // 显示遮罩层 var animation = wx.createAnimation({ duration: 200, timingFunction: "linear", delay: 0 }) this.animation = animation animation.translateY(300).step() this.setData({ animationData: animation.export(), showModalStatus: true }) setTimeout(function () { animation.translateY(0).step() this.setData({ animationData: animation.export() }) }.bind(this), 200) }, hideModal: function () { // 隐藏遮罩层 var animation = wx.createAnimation({ duration: 200, timingFunction: "linear", delay: 0 }) this.animation = animation animation.translateY(300).step() this.setData({ animationData: animation.export(), }) setTimeout(function () { animation.translateY(0).step() this.setData({ animationData: animation.export(), showModalStatus: false }) }.bind(this), 200) }, 在编辑器上和ios手机上弹出是正常的但是在安卓手机上页面不上滑的时候弹出框正常在底部页面上滑之后弹窗也跟着靠上面了 [图片] [图片]
2019-06-03 - form表单取值的问题
form表单提交数据时,第一次点击按钮获取到的input框的值为空,再点击一下input框点击按钮就可以获取到值了 ios手机上有问题,安卓没有问题
2019-01-09 - iPhone X button点击问题
iPhone X在页面最底部有一个提交按钮 这个按钮偶尔会出现点击没有反应的问题怎么整啊 [图片]
2018-11-26 - input框的问题
在ios的手机上input框输入完成后接着点击选择地址再返回来input框就被盖住了 这怎么解决 [图片] [图片]
2018-11-08 - picker点击问题
picker 如何在点击的时候给他的range赋值
2018-11-02 - 地理位置获取授权的问题
[图片]开发者工具上每次请求wx.getlocation都会弹出来这个过很长一段时间才正常,清除所有缓存重新登录又会这样,手机上没问题,
2018-08-03 - wx.authorize
wx.authorize调用直接走fail怎么解决 wx.authorize({ scope: 'scope.userLocation', success(){ console.log(999) },fail(){ console.log(888) } }) 直接打印出888也没用弹窗口
2018-06-25 - app.json
微信小程序能获取app.json里自定义的值吗
2017-08-23