- <!--compontents/curriculum/curriculum.wxml-->
- <view class="record">
- <view class="record_title">
- <text>学习记录</text>
- </view>
- <view class="record_con" wx:for="{{studyLog}}" wx:key="{{item.lessonId}}">
- <view class="record_list">
- <text>{{item.lessonTitle}}</text>
- <text>{{item.gmtCreated}}</text>
- </view>
- </view>
-
- </view>
|