mask.wxml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <!--pages/mask/mask.wxml-->
  2. <view class="invitation" bindtap="toInvitation">
  3. <text class="invitationTitle">邀请</text>
  4. </view>
  5. <!-- 蒙层 -->
  6. <view class="maskWrapper" wx:if="{{status}}">
  7. <view>
  8. <text>请您从下方列表中,选中一条课程或需求信息,作为邀请的具体内容,发给对方!</text>
  9. </view>
  10. <scroll-view class="scrollVertical" scroll-y>
  11. <radio-group class="chooseList">
  12. <radio class="chooseDetail">
  13. <view class="courseTitle">
  14. <text>课程号</text>
  15. <text class="courseDetail">xxx</text>
  16. </view>
  17. <view class="courseTitle">
  18. <text>辅导科目</text>
  19. <text class="courseDetail">xxx</text>
  20. </view>
  21. </radio>
  22. <radio class="chooseDetail">
  23. <view class="courseTitle">
  24. <text>课程号</text>
  25. <text class="courseDetail">xxx</text>
  26. </view>
  27. <view class="courseTitle">
  28. <text>辅导科目</text>
  29. <text class="courseDetail">xxx</text>
  30. </view>
  31. </radio>
  32. <radio class="chooseDetail">
  33. <view class="courseTitle">
  34. <text>课程号</text>
  35. <text class="courseDetail">xxx</text>
  36. </view>
  37. <view class="courseTitle">
  38. <text>辅导科目</text>
  39. <text class="courseDetail">xxx</text>
  40. </view>
  41. </radio>
  42. <radio class="chooseDetail">
  43. <view class="courseTitle">
  44. <text>课程号</text>
  45. <text class="courseDetail">xxx</text>
  46. </view>
  47. <view class="courseTitle">
  48. <text>辅导科目</text>
  49. <text class="courseDetail">xxx</text>
  50. </view>
  51. </radio>
  52. <radio class="chooseDetail">
  53. <view class="courseTitle">
  54. <text>课程号</text>
  55. <text class="courseDetail">xxx</text>
  56. </view>
  57. <view class="courseTitle">
  58. <text>辅导科目</text>
  59. <text class="courseDetail">xxx</text>
  60. </view>
  61. </radio>
  62. <radio class="chooseDetail">
  63. <view class="courseTitle">
  64. <text>课程号</text>
  65. <text class="courseDetail">xxx</text>
  66. </view>
  67. <view class="courseTitle">
  68. <text>辅导科目</text>
  69. <text class="courseDetail">xxx</text>
  70. </view>
  71. </radio>
  72. <radio class="chooseDetail">
  73. <view class="courseTitle">
  74. <text>课程号</text>
  75. <text class="courseDetail">xxx</text>
  76. </view>
  77. <view class="courseTitle">
  78. <text>辅导科目</text>
  79. <text class="courseDetail">xxx</text>
  80. </view>
  81. </radio>
  82. <radio class="chooseDetail">
  83. <view class="courseTitle">
  84. <text>课程号</text>
  85. <text class="courseDetail">xxx</text>
  86. </view>
  87. <view class="courseTitle">
  88. <text>辅导科目</text>
  89. <text class="courseDetail">xxx</text>
  90. </view>
  91. </radio>
  92. <radio class="chooseDetail">
  93. <view class="courseTitle">
  94. <text>课程号</text>
  95. <text class="courseDetail">xxx</text>
  96. </view>
  97. <view class="courseTitle">
  98. <text>辅导科目</text>
  99. <text class="courseDetail">xxx</text>
  100. </view>
  101. </radio>
  102. </radio-group>
  103. </scroll-view>
  104. <view class="commitAndCancel">
  105. <view class="cancel" bindtap="cancelChosed">取消</view>
  106. <view class="commit">发送</view>
  107. </view>
  108. </view>