chinese.wxml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--pages/chinese/chinese.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" scroll-into-view="{{position}}">
  8. <!--中文 -->
  9. <view class="chinese">
  10. <target wxObjectives="{{courseData.weekCourseConfig.wxObjectives}}"/>
  11. <lessonList
  12. lessonData="{{list}}"
  13. height="{{lessonListHeight}}"/>
  14. <preview
  15. materialData="{{courseData.lessonPage.list}}"
  16. height="{{previewHeight}}"/>
  17. <chat id="questions"
  18. productionData="{{questionsData}}"
  19. title="答疑讨论"
  20. query="我有疑问"
  21. type="1"
  22. columnType="3"
  23. bind:myevent="onMyEvent"
  24. data-type="1"/>
  25. <view class="questions-one" data-id="questions" bindtap="location">
  26. <image src="../image/q_discuss.png" ></image>
  27. <text class="row" wx:if="{{questionsdian > 0}}"></text>
  28. </view>
  29. </view>
  30. </scroll-view>
  31. </view>
  32. </view>