Files
Genarrative/miniprogram/pages/web-view/index.wxml

16 lines
429 B
Plaintext

<block wx:if="{{webViewUrl}}">
<web-view
src="{{webViewUrl}}"
bindload="handleWebViewLoad"
binderror="handleWebViewError"
bindmessage="handleWebViewMessage"
/>
</block>
<view wx:else class="setup-screen">
<view class="setup-card">
<view class="setup-title">需要配置 H5 入口</view>
<view class="setup-text">请先在 miniprogram/config.js 填写 WEB_VIEW_ENTRY_URL。</view>
</view>
</view>