收藏
回答

cover-view使用fiexd后点击事件无效?

tabbar-container使用了fixed后,点击事件出现了毛病 求指教


<view class="da">

<cover-view class="tabbar-container">

      <!-- 针对中间的导航栏  通过true来判断控制类名和样式 -->

      <cover-view class="tabbar-item" v-for="(item, index) in tabbarList" @click="changeItem(item)" :key="index">

        <cover-view class="item-top">

          <cover-image :src="currentItem == item.id ? item.selectIcon : item.icon"></cover-image>

        </cover-view>

        <!-- 通过三元判断控制类名 达到控制选中和未选中的样式 -->

        <cover-view class="item-bottom" :class="[currentItem == item.id ? 'item-active' : '']">

          <cover-view>{{ item.text }}</cover-view>

        </cover-view>

      </cover-view>

  </cover-view>

  <cover-view class="zhan" style="width: 100%; height: 167rpx;">

 

  </cover-view>

</view>

</template>

回答关注问题邀请回答
收藏

3 个回答

  • Demons
    Demons
    2022-06-06

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-06-06
    有用
    回复
  • 白晓
    白晓
    2022-06-06

    解决了,在设置fixed的盒子上设置z-index就行了

    2022-06-06
    有用 1
    回复
  • Frank
    Frank
    2022-06-06

    https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html,简单来个代码片段吧,方便你我他~

    2022-06-06
    有用
    回复
登录 后发表内容