- 从订阅消息进入小程序,可以传参吗?
我的小程序是跟第三方系统对接的,首页中有很多第三方系统中的单据,点击某张单据可以看到这张单据的详细信息,我们这边配置了订阅消息,当第三方系统新增了单据A就会给指定用户发送订阅消息,希望用户在收到消息时,从订阅消息中进入小程序,直接展示单据A的详细信息,有什么好的办法吗?
2023-11-28 - 小程序滚动穿透设置触发hidden后,再触发visible不生效?
wxml: <page-meta page-style="{{ show ? 'overflow: hidden;' : 'overflow: visible;' }}"/> //以下为弹窗(弹出画布进行电子签名、上传签名) <button style="background-color: #0070C0;width: 50%;font-size: 8vw;" bindtap="Sign" data-index="{{index}}">签名</button> <button style="background-color: #0070C0;width: 50%;font-size: 8vw;" bindtap="Upload" data-index="{{index}}">上传</button> <van-popup closeable show="{{ show }}" round position="bottom" custom-style="height: 70%" bind:close="onClose" lock-scroll="true"> <view ><signature h="{{0.5}}" class="signature" /></view> <view class="signature-btn"> <button style="background-color: #7EB2F2;width: 50%;font-size: 8vw;" bindtap="reset">重置</button> <button style="background-color: #7EB2F2;width: 50%;font-size: 8vw;" bindtap="save">确认</button> </view> </van-popup> js: [图片][图片] 大神请帮帮我,按照这种方式我在进行签名的时候hidden是生效的,确实不能滚动了,但是当我关掉弹窗时,页面还是不能滚动,是哪里有问题呀
2023-10-10