This commit is contained in:
aaron 2025-03-02 11:06:18 +08:00
parent 01eaa49a8f
commit fec7f3dd5a
4 changed files with 31 additions and 9 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>蜂快到家,一键下单,立刻送达</title>
<title></title>
</head>
<body>
<div id="app"></div>

View File

@ -1,9 +1,7 @@
<template>
<div>
<div class="privacy-container">
<div class="privacy-content">
<h1 class="text-lg font-bold text-gray-900 mb-8 text-center"> </h1>
<div class="privacy-content">
<div class="text-gray-600 leading-relaxed mb-8">
欢迎使用蜂快到家我们高度重视您的个人隐私本隐私协议将详细阐述在您使用期间我们对您个人信息的收集使用存储与共享方式同时明确您所享有的权利请您仔细阅读本协议若有任何疑问欢迎随时与我们联系
</div>
@ -24,6 +22,8 @@
</template>
<script setup>
import { onMounted, onBeforeUnmount } from 'vue'
const sections = [
{
title: '一、定义与解释',
@ -171,6 +171,14 @@ const sections = [
]
}
]
onMounted(() => {
document.title = '隐私政策'
})
onBeforeUnmount(() => {
document.title = '蜂快到家'
})
</script>
<style scoped>

View File

@ -1,9 +1,7 @@
<template>
<div>
<div class="privacy-container">
<div class="privacy-content">
<h1 class="text-lg font-bold text-gray-900 mb-8 text-center"> </h1>
<div class="privacy-content">
<div class="text-gray-600 leading-relaxed mb-8">
欢迎使用蜂快到家小程序为了保障您能安全顺畅地使用本小程序的服务特制定本用户协议请您仔细阅读在使用本小程序前请确保您已充分理解并同意本协议的所有条款如您对本协议有任何疑问请随时联系我们
</div>
@ -24,6 +22,8 @@
</template>
<script setup>
import { onMounted, onBeforeUnmount } from 'vue'
const sections = [
{
title: '一、定义与解释',
@ -145,6 +145,14 @@ const sections = [
]
}
]
onMounted(() => {
document.title = '用户服务协议'
})
onBeforeUnmount(() => {
document.title = '蜂快到家'
})
</script>
<style scoped>

View File

@ -16,12 +16,18 @@ const routes = [
{
path: '/privacy',
name: 'Privacy',
component: PrivacyAgreement
component: PrivacyAgreement,
meta: {
title: '隐私政策'
}
},
{
path: '/agreement',
name: 'Agreement',
component: UserAgreement
component: UserAgreement,
meta: {
title: '用户服务协议'
}
},
{
path: '/dashboard',