curriculum.wxml 584 B

12345678910111213141516
  1. <!--compontents/curriculum/curriculum.wxml-->
  2. <view class="record">
  3. <view class="record_title">
  4. <text>学习记录</text>
  5. </view>
  6. <view class="record_con" animation="{{animationData}}" style="height:{{height}}rpx">
  7. <view class="record_list" wx:for="{{studyLog}}" wx:key="{{item.lessonId}}">
  8. <text>{{item.lessonTitle}}</text>
  9. <text>{{item.gmtCreated}}</text>
  10. </view>
  11. </view>
  12. <view class="unfold" wx:if="{{height}}">
  13. <image class="dirImg" src="{{src}}"></image>
  14. <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  15. </view>
  16. </view>