2023-01-09 11:02:20 +00:00
|
|
|
|
<template>
|
|
|
|
|
|
<footer class="layout-footer text-center bg-[#222222] py-[30px]">
|
|
|
|
|
|
<div class="text-[#bebebe]">
|
|
|
|
|
|
<!-- <NuxtLink> 关于我们 </NuxtLink>
|
|
|
|
|
|
| -->
|
|
|
|
|
|
<NuxtLink :to="`/policy/${PolicyAgreementEnum.SERVICE}`">
|
|
|
|
|
|
用户协议
|
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
|
|
|
|
|
|
|
|
<NuxtLink :to="`/policy/${PolicyAgreementEnum.PRIVACY}`">
|
|
|
|
|
|
隐私政策
|
|
|
|
|
|
</NuxtLink>
|
|
|
|
|
|
|
|
|
|
|
|
|
<NuxtLink to="/user/info"> 会员中心 </NuxtLink>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="mt-4 text-tx-secondary">
|
|
|
|
|
|
<a
|
|
|
|
|
|
class="mx-1 hover:underline"
|
2024-08-28 16:24:01 +00:00
|
|
|
|
:href="item.value"
|
2023-01-09 11:02:20 +00:00
|
|
|
|
target="_blank"
|
|
|
|
|
|
v-for="item in appStore.getCopyrightConfig"
|
2024-08-28 16:24:01 +00:00
|
|
|
|
:key="item.key"
|
2023-01-09 11:02:20 +00:00
|
|
|
|
>
|
2024-08-28 16:24:01 +00:00
|
|
|
|
{{ item.key }}
|
2023-01-09 11:02:20 +00:00
|
|
|
|
</a>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
|
|
import { useAppStore } from '@/stores/app'
|
|
|
|
|
|
import { PolicyAgreementEnum } from '@/enums/appEnums'
|
|
|
|
|
|
const appStore = useAppStore()
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped></style>
|