业务交流通
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.wxml 1.1KB

1234567891011121314151617181920
  1. <!-- pages/msgPage/msgPage.wxml -->
  2. <view class="msg-page page-container">
  3. <view class="list-loading text-center" wx:if="{{ pageLoading }}">
  4. <van-loading size="24px">加载中...</van-loading>
  5. </view>
  6. <view wx:else class="body-view">
  7. <view class="top-view" wx:if="{{ topShow }}">
  8. <image class="msg-top-img fl" src="/images/home/msg-top-icon.png" />
  9. <view class="msg-text fl">关注公众号可随时接收离线消息~</view>
  10. <van-button color="#5e73e5" round class="msg-btn-go fl" size="small">前往关注</van-button>
  11. <image class="msg-colse-img fl" src="/images/home/close.png" bind:tap="closeTopShow" />
  12. </view>
  13. <view class="msg-box-view {{ topShow ? 'topShow' : '' }} not-msg-data" wx:if="{{ msgData.length < 1 }}">
  14. <image class="not-msg-data-img " src="/images/home/not-msg-data.png"/>
  15. <view class="not-data-msg-info">暂无消息记录</view>
  16. </view>
  17. <view wx:else class="msg-box-view {{ topShow ? 'topShow' : '' }}"></view>
  18. </view>
  19. <tabBar currentIndex="{{currentIndex}}"></tabBar>
  20. </view>