12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <!--pages/art/art.wxml-->
- <view class="container">
- <!-- 标题 -->
- <tarbar id="tarbar"/>
- <!-- 内容 -->
- <view class="content">
- <scroll-view scroll-y="true" scroll-with-animation="true" enable-back-to-top="true" scroll-into-view="{{position}}">
- <!-- 科学艺术 -->
- <view class="art">
- <target wxObjectives="{{wxObjectives}}"/>
- <lessonList
- lessonData="{{list}}"
- height="{{lessonListHeight}}"/>
- <preview
- materialData="{{materialData}}"
- height="{{previewHeight}}"/>
- <!--
- <view id="upload-position">
- <chat id="upload"
- ind="7"
- id="chat"
- productionData="{{productionData}}"
- title="作品展示"
- query="上传作品"
- type="2"
- columnType="6"
- bind:myevent="onMyEvent"
- bind:getHeight="onGetHeight"
- data-type="2"
- more="{{productionMore}}"
- timeList="{{timeList}}"
- teacher="{{teacher}}"
- />
- </view>
- <view id="questions-position">
- <chat id="questions"
- productionData="{{questionsData}}"
- title="答疑讨论"
- query="我有疑问"
- type="1"
- columnType="6"
- bind:myevent="onMyEvent"
- data-type="1"
- more="{{questionsMore}}"
- timeList="{{timeList}}"
- teacher="{{teacher}}"/>
- </view>
- <view class="upload-one" data-id="upload-position" bindtap="location">
- <image src="../image/works.png" ></image>
- </view>
- <view class="questions-one" data-id="questions-position" bindtap="location">
- <image src="../image/q_discuss.png" ></image>
- <text class="row" wx:if="{{questionsdian > 0}}"></text>
- </view>
- -->
- </view>
- </scroll-view>
- </view>
- <view class="canvas-box">
- <canvas canvas-id="myCanvas" style="width:100%; height: {{canvasHeight}}px;"></canvas>
- </view>
- <view hidden="{{flag}}">
- <dialog bindmyevent="jurisdiction"/>
- </view>
- </view>
|