art.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!--pages/art/art.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" enable-back-to-top="true" scroll-into-view="{{position}}">
  8. <!-- 科学艺术 -->
  9. <view class="art">
  10. <target wxObjectives="{{wxObjectives}}"/>
  11. <lessonList
  12. lessonData="{{list}}"
  13. height="{{lessonListHeight}}"/>
  14. <preview
  15. materialData="{{materialData}}"
  16. height="{{previewHeight}}"/>
  17. <!--
  18. <view id="upload-position">
  19. <chat id="upload"
  20. ind="7"
  21. id="chat"
  22. productionData="{{productionData}}"
  23. title="作品展示"
  24. query="上传作品"
  25. type="2"
  26. columnType="6"
  27. bind:myevent="onMyEvent"
  28. bind:getHeight="onGetHeight"
  29. data-type="2"
  30. more="{{productionMore}}"
  31. timeList="{{timeList}}"
  32. teacher="{{teacher}}"
  33. />
  34. </view>
  35. <view id="questions-position">
  36. <chat id="questions"
  37. productionData="{{questionsData}}"
  38. title="答疑讨论"
  39. query="我有疑问"
  40. type="1"
  41. columnType="6"
  42. bind:myevent="onMyEvent"
  43. data-type="1"
  44. more="{{questionsMore}}"
  45. timeList="{{timeList}}"
  46. teacher="{{teacher}}"/>
  47. </view>
  48. <view class="upload-one" data-id="upload-position" bindtap="location">
  49. <image src="../image/works.png" ></image>
  50. </view>
  51. <view class="questions-one" data-id="questions-position" bindtap="location">
  52. <image src="../image/q_discuss.png" ></image>
  53. <text class="row" wx:if="{{questionsdian > 0}}"></text>
  54. </view>
  55. -->
  56. </view>
  57. </scroll-view>
  58. </view>
  59. <view class="canvas-box">
  60. <canvas canvas-id="myCanvas" style="width:100%; height: {{canvasHeight}}px;"></canvas>
  61. </view>
  62. <view hidden="{{flag}}">
  63. <dialog bindmyevent="jurisdiction"/>
  64. </view>
  65. </view>