stuNeed.wxml 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <!--pages/stuNeed/stuNeed.wxml-->
  2. <view>
  3. <view class="stuNeedArea">
  4. <!-- 学生姓名 -->
  5. <view class="stuInfo">
  6. <view class="stuInfo-title">姓<text decode="true">&emsp;&emsp;</text>名*:</view>
  7. <input class="stuInput" type="text" placeholder="您的姓名" bindinput="getStuName" />
  8. </view>
  9. <!-- 学生手机号 -->
  10. <view class="stuInfo">
  11. <view class="stuInfo-title">手机号码*:</view>
  12. <input class="stuInput" type="number" placeholder="手机号码" bindinput="getStuPhone" />
  13. </view>
  14. <!-- 学生微信号 -->
  15. <view class="stuInfo">
  16. <view class="stuInfo-title">微<text decode="true">&ensp;</text>信<text decode="true">&ensp;</text>号*:</view>
  17. <input class="stuInput" type="text" placeholder="微信号(不便接听电话时微信沟通)" bindinput="getStuWeChat" />
  18. </view>
  19. <!-- 课程大类 -->
  20. <view class="stuInfo">
  21. <view>课程类别*:</view>
  22. <view class="stuCourse-wrapper" bindtap="chooseCourseTitle">
  23. <view class="stuCourse">{{chosedCourse || '请选择课程类别'}}</view>
  24. <view class="iconfont icon-xiangxia"></view>
  25. </view>
  26. </view>
  27. <!-- 课程细分小类 -->
  28. <view class="stuInfo">
  29. <view>课程细分*:</view>
  30. <view class="CourseDetail-wrapper">
  31. <view class="stuCourse">{{chosedCourse || '请先选择课程类别'}}</view>
  32. <view class="iconfont icon-xiangxia"></view>
  33. </view>
  34. </view>
  35. <!-- 辅导方式 -->
  36. <view class="stuInfo">
  37. <view>辅导方式*:</view>
  38. <view class="stuCourse">{{chosedCourse || '请选择'}}</view>
  39. <view class="iconfont icon-xiangxia"></view>
  40. </view>
  41. <!-- 学生性别 -->
  42. <view class="stuInfo">
  43. <view>学生性别*:</view>
  44. <view class="stuCourse">{{chosedCourse || '请选择'}}</view>
  45. <view class="iconfont icon-xiangxia"></view>
  46. </view>
  47. <!-- 课时费 -->
  48. <view class="stuInfo">
  49. <view class="stuInfo-title">课<text decode="true">&ensp;</text>时<text decode="true">&ensp;</text>费*:</view>
  50. <input class="stuInput" type="number" placeholder="请输入课时金额" />
  51. </view>
  52. <!-- 上课时间 -->
  53. <view>
  54. <text class="tr-title">上课时间*:</text>
  55. <view class="tr-container">
  56. <view class="tr_1">
  57. <text class="th_0" decode="true">&ensp;&ensp;&ensp;&ensp;</text>
  58. <text class="th_1">周一</text>
  59. <text class="th_1">周二</text>
  60. <text class="th_1">周三</text>
  61. <text class="th_1">周四</text>
  62. <text class="th_1">周五</text>
  63. <text class="th_1">周六</text>
  64. <text class="th_2">周日</text>
  65. </view>
  66. <view class="tr_2">
  67. <checkbox-group>
  68. <view class="th2_0">上午</view>
  69. <checkbox class="th2_1"></checkbox>
  70. <checkbox class="th2_1"></checkbox>
  71. <checkbox class="th2_1"></checkbox>
  72. <checkbox class="th2_1"></checkbox>
  73. <checkbox class="th2_1"></checkbox>
  74. <checkbox class="th2_1"></checkbox>
  75. <checkbox class="th2_2"></checkbox>
  76. </checkbox-group>
  77. </view>
  78. <view class="tr_2">
  79. <checkbox-group>
  80. <view class="th2_0">下午</view>
  81. <checkbox class="th2_1"></checkbox>
  82. <checkbox class="th2_1"></checkbox>
  83. <checkbox class="th2_1"></checkbox>
  84. <checkbox class="th2_1"></checkbox>
  85. <checkbox class="th2_1"></checkbox>
  86. <checkbox class="th2_1"></checkbox>
  87. <checkbox class="th2_2"></checkbox>
  88. </checkbox-group>
  89. </view>
  90. <view class="tr_2">
  91. <checkbox-group>
  92. <view class="th2_0">晚上</view>
  93. <checkbox class="th2_1"></checkbox>
  94. <checkbox class="th2_1"></checkbox>
  95. <checkbox class="th2_1"></checkbox>
  96. <checkbox class="th2_1"></checkbox>
  97. <checkbox class="th2_1"></checkbox>
  98. <checkbox class="th2_1"></checkbox>
  99. <checkbox class="th2_2"></checkbox>
  100. </checkbox-group>
  101. </view>
  102. </view>
  103. </view>
  104. <!-- 期望达到的目标或效果 -->
  105. <view class="stuGoal">
  106. <text>期望达到的目标或效果:</text>
  107. <textarea class="goal" name="" id="" cols="30" rows="10" maxlength="140"></textarea>
  108. </view>
  109. <!-- 老师身份 -->
  110. <view class="stuInfo">
  111. <view>老师身份:</view>
  112. <view class="stuCourse">{{chosedCourse || '不限'}}</view>
  113. <view class="iconfont icon-xiangxia"></view>
  114. </view>
  115. <!-- 老师学历 -->
  116. <view class="stuInfo">
  117. <view>老师学历:</view>
  118. <view class="stuCourse">{{chosedCourse || '不限'}}</view>
  119. <view class="iconfont icon-xiangxia"></view>
  120. </view>
  121. <!-- 老师性别 -->
  122. <view class="stuInfo">
  123. <view>老师性别:</view>
  124. <view class="stuCourse">{{chosedCourse || '不限'}}</view>
  125. <view class="iconfont icon-xiangxia"></view>
  126. </view>
  127. <!-- 是否要求老师上传头像 -->
  128. <view class="stuInfo">
  129. <view>是否要求头像上传:</view>
  130. <view class="stuCourse">{{chosedCourse || '不限'}}</view>
  131. <view class="iconfont icon-xiangxia"></view>
  132. </view>
  133. <!-- 对老师的其他需求 -->
  134. <view class="stuGoal">
  135. <text>对老师的其他需求:</text>
  136. <textarea class="goal" name="" id="" cols="30" rows="10" maxlength="140"></textarea>
  137. </view>
  138. </view>
  139. <!-- 提交按钮 -->
  140. <button class="submitBtn" type="primary" bindtap="toSubmit">提交</button>
  141. </view>
  142. <!-- 底部空白区域,为了增加间隔效果,避免提交按钮完全贴着底边 -->
  143. <view class="blank"></view>
  144. <!-- 课程类别(大类) -->
  145. <view wx:if="{{showCourseTitle}}">
  146. <!-- 空白区(背景) -->
  147. <view class="mask" bindtap="hiddenCourseTitle"></view>
  148. <!-- 内容区 -->
  149. <view class="courseTitle-wrapper">
  150. <view class="courseTitle-head">
  151. <view bindtap="hiddenEdu" bindtap="hiddenCourseTitle">取消</view>
  152. <view bindtap="confirmEdu" bindtap="confirmCourseTitle">确定</view>
  153. </view>
  154. <view class="courseTitle-content" wx:for="{{courseList}}" wx:key="key" bindtap="onChooseCourseTitle" data-index="{{index}}">
  155. <view style="position: absolute;left: 40rpx;">{{item.name}}</view>
  156. <image style="position: absolute;right: 40rpx;" src="{{item.chosed?'/images/selected.png':'/images/selectNull.png'}}"></image>
  157. </view>
  158. </view>
  159. </view>