empty.wxml 412 B

123456789
  1. <!--components/empty/empty.wxml-->
  2. <view class="empty-wrap {{isFixed ? 'is-absolute':''}}" style="top:{{ top }}rpx">
  3. <image wx:if="{{img.length}}" src="{{ img }}" class="img"></image>
  4. <text class="tips">{{ tips }}</text>
  5. <text wx:if="{{subTips.length}}" class="sub-tips">{{ subTips }}</text>
  6. <button wx:if="{{ btnTxt.length }}" class="btn" bind:tap="handleBtnAction">
  7. {{ btnTxt }}
  8. </button>
  9. </view>