index.wxml 1.0 KB

123456789101112131415161718192021222324
  1. <view class="content">
  2. <view class="course_title padding-box">课程名称:<text>{{headInfo.courseTitle}}</text></view>
  3. <view class="leader_name padding-box">授课领队:<text>{{headInfo.leaderName}}({{headInfo.city}})</text></view>
  4. <view class="feel padding-box">
  5. <view class="orange">*你上完这次课的感受是怎么样的?</view>
  6. <view class="group">
  7. <radio-group bindchange="checkRadio">
  8. <view class="lable" wx:for="{{radioArr}}" wx:key="*this">
  9. <label>
  10. <radio color="#ee3a43" value="{{item.value+'|'+item.title}}">{{item.title}}</radio>
  11. </label>
  12. </view>
  13. </radio-group>
  14. </view>
  15. </view>
  16. <view class="parents_feel padding-box">
  17. <view class="orange">爸爸妈妈对成长课有什么想说的吗?</view>
  18. <textarea bindblur="bindTextAreaBlur" maxlength="500" auto-height placeholder="请输入您对本次成长课的感受"/>
  19. </view>
  20. <view class="btn padding-box">
  21. <button type="warn" bindtap="submit">提交</button>
  22. </view>
  23. </view>