12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!--pages/sendInvitationList/sendInvitationList.wxml-->
- <!-- 顶部对方已读和未读按钮 -->
- <view class="read">
- <text class="readDetail" bindtap="readYes">对方已读</text>
- <text class="readDetail" bindtap="readNo">对方未读</text>
- </view>
- <!-- 发出的邀请列表 -->
- <view wx:if="{{read}}">
- <view class="invitationWrapper" bindtap="toSendInvitation">
- <view class="invitationTitle">
- <view>
- <text>邀请号</text>
- <text class="invitatinDetail">xxx</text>
- </view>
- <view class="other">
- <text>对方</text>
- <text class="invitatinDetail">X教员</text>
- </view>
- </view>
- <view class="invitationContent">
- <text>邀请内容</text>
- <text class="invitatinDetail">xxxxx</text>
- </view>
- <view class="invitationDateAndStatus">
- <view>
- <text>邀请日期</text>
- <text class="invitatinDetail">xxx</text>
- </view>
- <view class="other">
- <text>对方状态</text>
- <text class="invitatinStatus">同意</text>
- </view>
- </view>
- </view>
- </view>
- <view wx:else>
- <view class="invitationWrapper" bindtap="toSendInvitation">
- <view class="invitationTitle">
- <view>
- <text>邀请号</text>
- <text class="invitatinDetail">xxx</text>
- </view>
- <view class="other">
- <text>对方</text>
- <text class="invitatinDetail">X教员</text>
- </view>
- </view>
- <view class="invitationContent">
- <text>邀请内容</text>
- <text class="invitatinDetail">xxxxx</text>
- </view>
- <view class="invitationDateAndStatus">
- <text>邀请日期</text>
- <text class="invitatinDetail">xxx</text>
- </view>
- </view>
- </view>
|