<!--pages/transmit/transmit.wxml--> <view class="container"> <!-- 标题 --> <tarbar id="tarbar"/> <!-- 内容 --> <view class="content"> <scroll-view scroll-y="true" bindscroll="lower" scroll-with-animation="true" scroll-with-animation="true" enable-back-to-top="true"> <!-- 科学艺术 --> <view class="art"> <view class="works"> <view class="title"> <image src="../../pages/image/xing.png" class="xing"></image> <text class="">分享作品</text> <image src="../../pages/image/xing.png" class="xing"></image> </view> <view class="share-con"> <view class="head"> <view class="head-img"> <image src="{{productionData.featureMap.headImgUrl}}"></image> </view> <view class="lesson-name"> <text>{{productionData.featureMap.wechatName}}</text> <text style="height: 100%">{{productionData.title}}</text> </view> </view> <view class="picture"> <block wx:for="{{productionData.imagesList}}" wx:for-item="items" wx:key="{{items.id}}"> <image src="{{items.path}}" bindtap="listenerButtonPreviewImage" data-img="{{items.path}}"></image> </block> </view> <view class="icon"> <view bindtap="like"> <image src="../../pages/image/zan.png" class="zan" wx:if="{{like}}"></image> <image src="../../pages/image/nozan.png" class="zan" wx:else></image> <text>{{favors ? favors : '0'}}</text> </view> <view> <image src="../../pages/image/weatch.png" class="weatch"></image> <text>{{productionData.postsAttributeInfo ? productionData.postsAttributeInfo.views : '0'}}</text> </view> <view> <image src="../../pages/image/discuss.png" class="discuss"></image> <text>{{productionData.replyCount}}</text> </view> </view> </view> </view> </view> </scroll-view> </view> </view>