12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!--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" bindtap="particulars" data-postsId="{{productionData.id}}">
- <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}}">
- <image src="{{items}}" catchtap="listenerButtonPreviewImage" data-img="{{items}}"></image>
- </block>
- </view>
- <view class="icon">
- <view catchtap="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 hidden="{{flag}}">
- <dialog bindmyevent="jurisdiction"/>
- </view>
- </view>
|