请问解决了吗?
使用wx-open-launch-weapp 标签openTagList 返回为空?使用 wx-open-launch-weapp 微信内部H5跳转到小程序 返回 openTagList 返回为空 wx.config 也配置了 wx.config({ debug: false, appId: result.appId, // 必填,公众号的唯一标识,填自己的! timestamp: result.timestamp, // 必填,生成签名的时间戳,刚才接口拿到的数据 nonceStr: result.nonceStr, // 必填,生成签名的随机串 signature: result.signature, // 必填,签名,见附录1 jsApiList: ['wx-open-launch-weapp'], // 必填,需要使用的JS接口列表 openTagList: ['wx-open-launch-weapp'] // 跳转小程序时必填 }); [图片] 也是认证的公众号和小程序,获取的所有信息也是后台配置的,域名 js安全域名配置的也对,不知道是什么原因
11-15有没有大佬帮帮忙
同时使用u-swiper和scroll-view就不能滑动轮播组件了?<template> <view class="content"> <view class="swiper"> <template v-if="scrollTop < 300"> <u-swiper :list="list1" height="100vh" imgMode="heightFix"></u-swiper> </template> <template v-else> <view class="zoom-box" :style="{ 'transform': `scale(${scale})` }"> <u--image :showLoading="true" src="https://img2.baidu.com/it/u=3369130612,2858330241&fm=253&fmt=auto&app=138&f=JPEG?w=750&h=500" width="100%" height="500rpx" mode="widthFix"></u--image> </view> </template> </view> <scroll-view class="fixed" scroll-y :scroll-top="scrollTop" scroll-with-animation @scroll="handleScroll" @touchend="handleTouchEnd"> <view style="height: 100vh;pointer-events: none;"></view> <view class="main"> <view v-for="item in 200">{{ item }}</view> <u-button type="primary" shape="circle" text="按钮形状"></u-button> </view> </scroll-view> </view> </template> <script> export default { data() { return { list1: [ 'https://cdn.uviewui.com/uview/swiper/swiper1.png', 'https://cdn.uviewui.com/uview/swiper/swiper2.png', 'https://cdn.uviewui.com/uview/swiper/swiper3.png', ], scrollTop: 0, scale: 2, currentScrollTop: 0 } }, methods: { handleScroll(event) { }, handleTouchEnd() { }, handleTouchstart(e) { console.log(e); } } } </script> <style lang="scss" scoped> .swiper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .main { margin-top: -120rpx; background-color: #fff; } .fixed { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 2; overflow-y: auto; } </style> 当我可以上上下滚动的时候 我的轮播左右就无法滚动了,当我最外层添加pointer-event: none; 时候 轮播可以滚动 但是上下又无法滚动了 请问如何解决既可以上下滚动,又可以轮播左右滚动 急急急
05-06我也遇到了类似的问题,请问解决了吗?
微信公众号发版白屏怎么解决?1.每次发布新版后,部分安卓机型会白屏 2.需要手动刷新或者清理微信缓存才可恢复
2023-04-21