<cu-custom bgColor="bg-white" :isBack="false" v-if="PageCur != 'mine' && PageCur != 'home'">
<block slot="content" style="color: #333">
<view class="navBar">
<u-icon name="arrow-left" color="#fff" size="19" @tap="back"></u-icon>
<u-line direction="column" :hairline="false" length="16" margin="0 10px"></u-line>
<u-icon name="list" color="#fff" size="19" @tap="show = true"></u-icon>
</view>
{{ getNavTitle() }}
</block>
</cu-custom>
点击事件发现没有,页面渲染之后发现content上面还有一层content,导致遮挡住了,解决方案:在 navBar 上面增加一个css属性:
pointer-events:visible;
完美解决