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