12345678910111213141516171819202122232425262728 |
- <view style="background: #f5f5f5; padding: 20rpx 0;">
- <view class="container">
- <view class="top_boxs">
- <view class="title">{{itemlist.name}}</view>
- <view>文件大小:{{itemlist.size}}</view>
- <view class="item_boxs">连接有效期剩余:{{countdown}}</view>
- </view>
- <view style="width: 100%;">
- <button class="preview-btn" bindtap="handleDownloadFile">立即下载</button>
- </view>
- <view class="top_boxs">
- <view class="title">分享下载链接</view>
- <view style="display: flex; padding: 20rpx 0; justify-content: space-between;">
- <view style="display: flex; width: 90%; border: 1rpx solid #e4e7ed; height: 80rpx; line-height: 80rpx; border-radius: 12rpx;">
- <!-- <view style="width: 30%; text-align: center;border-right: 1rpx solid #e4e7ed; background: #f5f7fa; font-weight: 600; color: #606266;">Https: //</view> -->
- <view style="width: 100%; padding-left: 20rpx; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{{ itemtempFileURL ? itemtempFileURL : '暂无' }}</view>
- </view>
- <image style="width: 50rpx;height: 50rpx; margin-top: 15rpx;" src="{{fuzhi}}" mode=""/>
- </view>
- <view class="dowm_boxs">
- <button class="dowm_boxs-btn" bindtap="handleShareTap">分享到微信</button>
- <button class="dowm_boxs-btns" bindtap="handleCopyLink">保存链接地址</button>
- </view>
- </view>
- <float />
- </view>
- </view>
|