业务交流通
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.8KB

12345678910111213141516171819202122232425262728293031
  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' : '' }}">
  18. <view class="msg-li-item" wx:for="{{msgData}}" wx:key="index" bindtap="goToChat" data-item="{{ item }}">
  19. <view class="chatheads-view fl">
  20. <image class='other-head-img' src='{{item.businessCommunicationCustomerVO.chatHeads }}'></image>
  21. </view>
  22. <view class="msg-content fl">
  23. <view class="msg-nickName fl yichu">{{ item.businessCommunicationCustomerVO.nickName }}</view>
  24. <view class="msg-last-content fl yichu">{{ item.lastContent }}</view>
  25. <view class="msg-last-content-date fr yichu">{{ item.lastContentDate }}</view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <tabBar currentIndex="{{currentIndex}}"></tabBar>
  31. </view>