sendInvitationList.wxml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!--pages/sendInvitationList/sendInvitationList.wxml-->
  2. <!-- 顶部对方已读和未读按钮 -->
  3. <view class="read">
  4. <text class="readDetail" bindtap="readYes">对方已读</text>
  5. <text class="readDetail" bindtap="readNo">对方未读</text>
  6. </view>
  7. <!-- 发出的邀请列表 -->
  8. <view wx:if="{{read}}">
  9. <view class="invitationWrapper" bindtap="toSendInvitation">
  10. <view class="invitationTitle">
  11. <view>
  12. <text>邀请号</text>
  13. <text class="invitatinDetail">xxx</text>
  14. </view>
  15. <view class="other">
  16. <text>对方</text>
  17. <text class="invitatinDetail">X教员</text>
  18. </view>
  19. </view>
  20. <view class="invitationContent">
  21. <text>邀请内容</text>
  22. <text class="invitatinDetail">xxxxx</text>
  23. </view>
  24. <view class="invitationDateAndStatus">
  25. <view>
  26. <text>邀请日期</text>
  27. <text class="invitatinDetail">xxx</text>
  28. </view>
  29. <view class="other">
  30. <text>对方状态</text>
  31. <text class="invitatinStatus">同意</text>
  32. </view>
  33. </view>
  34. </view>
  35. </view>
  36. <view wx:else>
  37. <view class="invitationWrapper" bindtap="toSendInvitation">
  38. <view class="invitationTitle">
  39. <view>
  40. <text>邀请号</text>
  41. <text class="invitatinDetail">xxx</text>
  42. </view>
  43. <view class="other">
  44. <text>对方</text>
  45. <text class="invitatinDetail">X教员</text>
  46. </view>
  47. </view>
  48. <view class="invitationContent">
  49. <text>邀请内容</text>
  50. <text class="invitatinDetail">xxxxx</text>
  51. </view>
  52. <view class="invitationDateAndStatus">
  53. <text>邀请日期</text>
  54. <text class="invitatinDetail">xxx</text>
  55. </view>
  56. </view>
  57. </view>