收藏
回答

关于cover-view中button的问题?

在cover-view中嵌套了button但是在真机上不显示,查找了资料都说老问题一直没解决,怎么办?

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

2 个回答

  • North of the Wolf
    North of the Wolf
    2021-05-20

    在Button里面再放一个cover-view

    <button>
      <cover-view></cover-view>
    </button>
    
    2021-05-20
    有用
    回复
  • ^ ^
    ^ ^
    2021-05-18
    <map class="map" subkey="YKPBZ-BRK36-W4RSL-E3OCL-2SMUH-LGFVF"
         longitude="{{longitude}}" latitude="{{latitude}}" scale="17" markers="{{marker}}"
         bindcallouttap="bindcallouttap"> 
      <!-- 展开tabBar -->
      <cover-view class="cu-bar tabbar margin-bottom-xl bg-white" wx:if="{{btnOpen}}">
        <cover-view class="action text-gray add-action">
            <cover-view class="flex flex-wrap justify-around">
              <button class="cu-btn cuIcon-right bg-blue animation-slide-right margin-sm basis-sm shadow" bindtap="change" data-class="slide-right"></button>
            </cover-view>
        </cover-view>
      </cover-view>
      <!-- tabBar功能栏 -->
      <cover-view class="cu-bar tabbar margin-bottom-xl bg-white" wx:if="{{btnClose}}">
        <cover-view class="action text-gray add-action" wx:for="{{list}}" wx:key="index">
            <cover-view class="flex flex-wrap justify-around">
              <button class="cu-btn cuIcon-{{item.icon}} bg-blue animation-slide-left margin-sm basis-sm shadow" bindtap="{{item.function}}" data-class="slide-left" 
              style="animation-delay: {{(index+1)*0.1}}s;"></button>
            </cover-view>
        </cover-view>
      </cover-view>
    </map>
    
    2021-05-18
    有用
    回复
登录 后发表内容