remark.wxml 769 B

12345678910111213141516
  1. <view class='container'>
  2. <view class='wrapper'>
  3. <view class='list'>
  4. <view>作文评语</view>
  5. <view class='list-items' wx:for='{{list}}' wx:key='index'>
  6. <!-- <view style='width:8%'>
  7. <view class='list-items-index'>{{index+1}}</view>
  8. </view> -->
  9. <view class='list-items-title'>{{item.module}}</view>
  10. <view class='list-items-text' wx:for='{{item.compositionCommentList}}' wx:for-item='val' wx:for-index='key' wx:key='key'>{{val.comment}}</view>
  11. </view>
  12. <view class="list-title" wx:if='{{homeworkComment}}'>作业评语</view>
  13. <view class="list-title" style="background: #F4F6FB;border-radius:16rpx;" wx:if='{{homeworkComment}}'>{{homeworkComment}}</view>
  14. </view>
  15. </view>
  16. </view>