2026-03-12 11:36:50 +08:00
|
|
|
<view class="page">
|
|
|
|
|
<!-- 简单自定义导航栏 -->
|
|
|
|
|
<view class="nav-bar" style="padding-top: {{statusBarHeight}}px;">
|
|
|
|
|
<view class="nav-content" style="height: {{navBarHeight - statusBarHeight}}px;">
|
|
|
|
|
<view class="nav-back" bindtap="goBack">
|
2026-03-18 17:54:32 +08:00
|
|
|
<icon name="chevron-left" size="44" color="#ffffff" customClass="back-arrow"></icon>
|
2026-03-12 11:36:50 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="nav-title">
|
|
|
|
|
<text class="nav-title-text">{{title}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="nav-actions">
|
|
|
|
|
<view class="copy-btn" bindtap="copyLink">
|
|
|
|
|
<text class="copy-text">复制链接</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="nav-placeholder" style="height: {{navBarHeight}}px;"></view>
|
|
|
|
|
|
|
|
|
|
<!-- 链接预览区域 -->
|
2026-03-15 09:20:27 +08:00
|
|
|
<view class="webview-wrap" wx:if="{{url && !loadError}}">
|
|
|
|
|
<web-view src="{{url}}" binderror="onWebViewError"></web-view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="error-wrap" wx:elif="{{loadError}}">
|
|
|
|
|
<text class="error-text">该链接无法在小程序内预览</text>
|
|
|
|
|
<view class="error-btn" bindtap="copyLink">
|
|
|
|
|
<text class="error-btn-text">复制链接到浏览器打开</text>
|
|
|
|
|
</view>
|
2026-03-12 11:36:50 +08:00
|
|
|
</view>
|
|
|
|
|
<view class="empty-wrap" wx:else>
|
|
|
|
|
<text class="empty-text">暂无链接地址</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|