拓恒河湖长制全民护河平台WEB端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
804B

  1. <!--package_first/pages/LearningVideo/index.wxml-->
  2. <view class="LearningVideo_container">
  3. <view class="part" wx:for="{{list}}" wx:key="index">
  4. <view><image class="sutdy_picture" src="{{item.imageUrl}}" mode=""/></view>
  5. <view class="cotent">
  6. <view class="title">
  7. <view class="title_text">{{item.videoTitle}}</view>
  8. <view class="{{item.status==2?'item__tag sutdying':item.status==1?'item__tag no--sutdy':'item__tag is--sutdy'}}">
  9. {{item.status==2?'学习中':item.status==1?'待学习':'已学习'}}
  10. </view>
  11. </view>
  12. <view class="title_content">{{item.videoBrief}}</view>
  13. </view>
  14. </view>
  15. <view class="bottom">- 更多视频 敬请期待 -</view>
  16. </view>