language.wxml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--pages/language/language.wxml-->
  2. <view class="container">
  3. <!-- 标题 -->
  4. <tarbar id="tarbar"/>
  5. <!-- 内容 -->
  6. <view class="content">
  7. <scroll-view scroll-y="true" scroll-with-animation="true" scroll-with-animation="true" enable-back-to-top="true">
  8. <!-- 语文 -->
  9. <view class="language">
  10. <target wxObjectives="{{courseData.weekCourseConfig.wxObjectives}}"/>
  11. <lessonList lessonData="{{courseData.lessonPage.list}}"/>
  12. <preview materialData="{{courseData.lessonPage.list}}"/>
  13. <chat
  14. productionData="{{questionsData}}"
  15. title="答疑讨论"
  16. query="我有疑问"
  17. type="1"
  18. columnType="1"/>
  19. <view class="questions-one">
  20. <image src="../image/q_discuss.png" ></image>
  21. </view>
  22. <view class="upload-one">
  23. <image src="../image/works.png" ></image>
  24. </view>
  25. </view>
  26. </scroll-view>
  27. </view>
  28. </view>