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