线上事故,紧急求助:IOS端,webview嵌入的微信公众号网页:https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkxODI5NzkwOQ==&action=getalbum&album_id=2818070381579272192 ,其中新闻列表点击没反应,无法打开页面,但安卓可以。这个问题被老板发现了,让我赶紧找到解决方案。我代码如下:
<template>
<web-view id="web-view" class="uni-webview" :style="{ 'pointer-events': 'auto' }" :src="url"
:horizontalScrollBarAccess="true" :verticalScrollBarAccess="true"
>
</web-view>
</template>
<script>
const url = `https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkxODI5NzkwOQ==&action=getalbum&album_id=2818070381579272192`;
</script>
0 个回复