<!--compontents/curriculum/curriculum.wxml-->
<view class="record">
  <view class="record_title">
    <text>学习记录</text>
  </view>
  <view class="record_con" animation="{{animationData}}" style="height:{{height}}rpx">
    <view class="record_list" wx:for="{{studyLog}}" wx:key="{{item.lessonId}}">
      <text>{{item.lessonTitle}}</text>
      <text>{{item.gmtCreated}}</text>
    </view>
  </view>
  <view class="unfold" wx:if="{{height}}">
      <image class="dirImg" src="{{src}}"></image>
      <text data-flag="{{flag}}" bindtap="onTap">{{downUp}}</text>
  </view>
</view>