细节优化

This commit is contained in:
speakeloudest 2025-12-31 07:37:03 -08:00
parent ecd6cf1c94
commit f9d55161e6
5 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="md:flex md:h-full md:flex-col md:justify-between">
<div class="bg-[#A8FF53] px-6 font-sans text-black">
<h2 class="mb-1 text-center text-2xl font-bold">选择付款方式</h2>

View File

@ -7,7 +7,7 @@
<header
class="flex h-[68px] items-center justify-between rounded-full bg-[#ADFF5B] pr-[30px] pl-6 md:h-[80px]"
>
<div class="flex items-center gap-2">
<router-link to="/" class="flex items-center gap-2">
<!-- Desktop Logo -->
<!-- <Logo :src="Logo" alt="Hi快VPN" class="hidden h-10 w-auto text-black md:block" />-->
<!-- Mobile Logo -->
@ -16,7 +16,7 @@
alt="Hi快VPN"
class="block h-[28px] text-black md:h-[50px]"
/>
</div>
</router-link>
<div class="text-xl font-[600] text-black md:text-3xl">Hi快iOS版本下载教程</div>
</header>
</div>

View File

@ -24,12 +24,12 @@
border-image-slice: 1;
"
>
<div class="flex items-center gap-2">
<router-link to="/" class="flex items-center gap-2">
<!-- Desktop Logo -->
<Logo alt="Hi快VPN" class="hidden h-[29px] w-auto md:ml-[62px] md:block" />
<!-- Mobile Logo -->
<MobileLogo alt="Hi快VPN" class="ml-6 block h-[28px] w-[67px] md:hidden" />
</div>
</router-link>
<div v-if="isLoggedIn" class="flex items-center">
<router-link
to="/user-center"

View File

@ -7,7 +7,7 @@
<header
class="flex h-[68px] items-center justify-between rounded-full bg-[#ADFF5B] pr-[30px] pl-6 md:h-[80px]"
>
<div class="flex items-center gap-2">
<router-link to="/" class="flex items-center gap-2">
<!-- Desktop Logo -->
<!-- <Logo :src="Logo" alt="Hi快VPN" class="hidden h-10 w-auto text-black md:block" />-->
<!-- Mobile Logo -->
@ -16,7 +16,7 @@
alt="Hi快VPN"
class="block h-[28px] text-black md:h-[50px]"
/>
</div>
</router-link>
<div class="text-xl font-[600] text-black md:text-3xl">个人账户</div>
</header>
</div>
@ -233,7 +233,8 @@ async function init() {
request
.get('/api/v1/public/payment/methods')
.then((res: any) => {
payments.value = res.list?.filter((p: any) => p.platform !== 'apple_iap') || []
payments.value =
res.list?.filter((p: any) => p.platform !== 'apple_iap' && p.platform !== 'Stripe') || []
})
.finally(() => {
isPaymentsLoading.value = false

View File

@ -174,7 +174,6 @@ export default class Request {
...config.headers,
lang: 'zh_CN',
'login-type': 'device',
'user-agent': 'android',
...(mergeExtraConfig.withToken && {
[mergeExtraConfig.tokenKey]: mergeExtraConfig.getToken(),
}),