12345678910111213141516171819202122232425262728293031 |
- <!-- 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 class="msg-li-item" wx:for="{{msgData}}" wx:key="index" bindtap="goToChat" data-item="{{ item }}">
- <view class="chatheads-view fl">
- <image class='other-head-img' src='{{item.businessCommunicationCustomerVO.chatHeads }}'></image>
- </view>
- <view class="msg-content fl">
- <view class="msg-nickName fl yichu">{{ item.businessCommunicationCustomerVO.nickName }}</view>
- <view class="msg-last-content fl yichu">{{ item.lastContent }}</view>
- <view class="msg-last-content-date fr yichu">{{ item.lastContentDate }}</view>
- </view>
- </view>
- </view>
- </view>
- <tabBar currentIndex="{{currentIndex}}"></tabBar>
- </view>
|