1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!--pages/art/art.wxml-->
- <view class="container">
- <!-- 标题 -->
- <tarbar id="tarbar"/>
- <!-- 内容 -->
- <view class="content">
- <scroll-view scroll-y="true" scroll-with-animation="true" scroll-with-animation="true" enable-back-to-top="true">
- <!-- 科学艺术 -->
- <view class="art">
- <target/>
- <lessonList/>
- <view class="material">
- <view class="this-week">
- <image src="../image/study.png"></image>
- <view class="lesson-name">
- <text>学习资料</text>
- <text>本周和历史学习资料</text>
- </view>
- </view>
- <view class="material-con">
- <view class="art-img">
- <text>钻石戒指</text>
- <text>点击预览</text>
- </view>
- <view class="art-img">
- <text>钻石戒指</text>
- <text>点击预览</text>
- </view>
- </view>
- </view>
- <view>科学</view>
- <chat
- productionData="{{productionData}}"
- title="作品分享"
- query="分享作品"
- type="2"/>
- <chat
- productionData="{{questionsData}}"
- title="答疑讨论"
- query="我有疑问"
- type="1"/>
- <view class="questions-one">
- <image src="../image/q_discuss.png" ></image>
- </view>
- <view class="upload-one">
- <image src="../image/works.png" ></image>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
|