Files
boluo-app-main/src/pages/protocol-webview/index.tsx
2025-09-20 20:00:44 +08:00

12 lines
293 B
TypeScript

import { WebView } from '@tarojs/components';
import Toast from '@/utils/toast';
import './index.less';
export default function ProtocolWebview() {
return (
<WebView src="https://neighbourhood.cn/user-agreement.html?t=1" onError={() => Toast.error('加载失败请重试')} />
);
}