123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <!
- <view class="invitation" bindtap="toInvitation">
- <text class="invitationTitle">邀请</text>
- </view>
- <!
- <view class="maskWrapper" wx:if="{{status}}">
- <view>
- <text>请您从下方列表中,选中一条课程或需求信息,作为邀请的具体内容,发给对方!</text>
- </view>
- <scroll-view class="scrollVertical" scroll-y>
- <radio-group class="chooseList">
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- <radio class="chooseDetail">
- <view class="courseTitle">
- <text>课程号</text>
- <text class="courseDetail">xxx</text>
- </view>
- <view class="courseTitle">
- <text>辅导科目</text>
- <text class="courseDetail">xxx</text>
- </view>
- </radio>
- </radio-group>
- </scroll-view>
- <view class="commitAndCancel">
- <view class="cancel" bindtap="cancelChosed">取消</view>
- <view class="commit">发送</view>
- </view>
- </view>
|