收藏
回答

cover-view自定义页面头部导航,页面卡顿

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug cover-view 微信iOS客户端 8.0.35 2.32.1

cover-view自定义页面头部导航,页面卡顿.复现流程:跳转二级页面后台挂起10分钟,在进入当前页面,页面出现滑动和点击卡顿5~10秒的bug

以下为头部自定义导航代码:

<cover-view class="nav-bar {{type}}" style="height: {{navHeight}}px; opacity:{{type != 'transparent' ? 1 : opacity}}">

  <cover-view

    style="padding-top: {{ navTop }}px; text-align: center; width: 100%; ">

    <cover-view style="display:inline-block; height: {{ menuButtonHeight }}px;line-height: {{ menuButtonHeight }}px; bindtap="dropdown">

      {{title}}

      <cover-view class="dropdownwx:if="{{dropdown}}">

        <cover-image wx:if="{{ arrow == 'up' }}" src="https://hmpcloud-static.oss-cn-shenzhen.aliyuncs.com/app/images/icon_up.png" />

        <cover-image wx:if="{{ arrow == 'down' }}" src="https://hmpcloud-static.oss-cn-shenzhen.aliyuncs.com/app/images/icon_down.png" />

      </cover-view>

    </cover-view>

  </cover-view>

</cover-view>

<cover-view bindtap="backclass="nav-bar-icon-boxstyle="top: {{navTop - 15 + menuButtonHeight/2}}px;">

  <cover-view wx:if="{{ back }}" style="opacity:{{type != 'transparent' ? 1 : opacity}}" class="nav-bar-icon {{type}}">

    <cover-image wx:if="{{ arrowColor == 'black' }}" src="../../../images/icon_return.pngstyle="opacity:{{type != 'transparent' ? 1 : opacity}}" class="img_black {{type}}"/>

    <cover-image wx:else src="https://hmpcloud-static.oss-cn-shenzhen.aliyuncs.com/app/images/icon_back.pngstyle="opacity:{{type != 'transparent' ? 1 : opacity}}" class="nav-bar-icon {{type}}"/>

  </cover-view>

  <cover-image wx:if="{{ home }}" src="https://hmpcloud-static.oss-cn-shenzhen.aliyuncs.com/app/images/icon_home.pngstyle="opacity:{{type != 'transparent' ? 1 : opacity}}" class="nav-bar-icon {{type}}"/>

</cover-view>

<cover-view wx:if="{{type != 'transparent'}}" class="nav-bar-placeholderstyle="height: {{navHeight}}px;">

</cover-view>


回答关注问题邀请回答
收藏
登录 后发表内容