index.wxml 307 B

123456789
  1. <van-overlay z-index="5" show="{{ show }}" bind:click="{{hide ? 'hidefunc' : ''}}">
  2. <!-- loading类型 -->
  3. <view class="wrapper">
  4. <view wx:if="{{type=='loading'}}" class="loading">
  5. <van-loading type="spinner" />
  6. <view class="load">加载中...</view>
  7. </view>
  8. </view>
  9. </van-overlay>