update
This commit is contained in:
parent
01eaa49a8f
commit
fec7f3dd5a
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user