收藏
回答

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 个回答

登录 后发表内容