22 lines
1.5 KiB
Plaintext
22 lines
1.5 KiB
Plaintext
<!-- components/poster/index.wxml -->
|
|
<view class="poster fixed {{isShow?'show':'hide'}}">
|
|
<view class="poster-bg absolute top-0 bottom-0 left-0 right-0" bindtap="hidePoster"></view>
|
|
<view class="poster-main poster-main-img absolute box-center-middle">
|
|
<canvas canvas-id='postercanvas' class='canvas absolute box-center-middle' style="width:{{canvasInfo.width}};height:{{canvasInfo.height}}"></canvas>
|
|
<view wx:if="{{showOptBtn}}" class="overflowhidden ulib-r10">
|
|
<scroll-view scroll-y="true" style="max-height:900rpx;">
|
|
<image class="block wp100 ulib-r10" wx:if="{{tempPosterPath}}" src="{{tempPosterPath}}" mode="widthFix" catchtap="preview" />
|
|
</scroll-view>
|
|
</view>
|
|
<view class="bg-fff mt30 inner30 box-shadow-000-10-10 ulib-r10" wx:if="{{showOptBtn&&moments}}">
|
|
<view class="font-32 color-666 line-clamp-2 line-height-16">{{moments}}</view>
|
|
<view class="mt10 text-right">
|
|
<view class="inline-block bg-333 pt5 pb5 pl20 pr20 font-22 color-fff ulib-r750" bindtap="copyWord" data-tx="{{moments}}">复制</view>
|
|
</view>
|
|
</view>
|
|
<view class="mt40 fn-flex" wx:if="{{showOptBtn}}">
|
|
<button class="fn-flex-item bds-2-fff btn-no-bg font-32 color-fff ulib-r750 text-center ml20 mr20" catchtap="pushLink" data-url="/pages/distribute/special/index?id={{qccodeid}}">专题预览</button>
|
|
<button class=" fn-flex-item btn-f9394d font-32 color-fff ulib-r750 text-center ml20 mr20" hover-class="btn-f9394d-hover" catchtap="saveToAblum">保存分享</button>
|
|
</view>
|
|
</view>
|
|
</view> |