kuaiying_wx/pages/video/video.wxml
2025-03-04 15:25:38 +08:00

29 lines
1.5 KiB
Plaintext

<view class="wrap">
<textarea autoHeight class="video-title" value="{{preview}}"></textarea>
<video class="video-box" poster="{{dataImage}}" src="{{dataUrl}}" wx:if="{{dataUrl!=''}}"></video>
<image class="video-box" src="{{dataImage}}" wx:else></image>
<view style="font-size: 10px; text-align: center; color: #a790e2;font-size: 15px;">视频太大的建议复制地址到浏览器自行下载</view>
<view style="font-size: 10px; text-align: center;color: #a790e2;font-size: 15px;">保存失败的也复制链接到浏览器下载</view>
<view style="width: 100%;"></view>
<view class="buttons-row">
<button bindgetuserinfo="postSave" class="parsing" openType="getUserInfo">保存到相册</button>
<button bindtap="copyUrl" class="parsing copy-url">复制地址</button>
</view>
<view class="buttons-row">
<button bindtap="extractText" class="parsing extract-text" data-url="{{dataUrl}}" disabled="{{isExtracting}}">视频文案提取</button>
<button bindtap="goBack" class="parsing go-back">返回首页</button>
</view>
<view class="center" style="color: #a790e2; margin-top: 10px;font-size: 13px;">版权归视频原作者所有</view>
<!-- <view bindtap="onAdClick" class="advertisement">
<image src="https://file.guimiaokeji.com/kecheng.png"></image>
</view> -->
</view>
<popup
wx:if="{{showPopup}}"
popupType="{{popupType}}"
popupContent="{{popupContent}}"
buttonText="查看详情"
targetUrl="/pages/details/details"
/>