feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

View File

@ -0,0 +1,3 @@
export default definePageConfig({
navigationBarTitleText: '隐私协议',
});

View File

View File

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