feat: 更新转账和提现组件的样式,统一背景色为淡色,优化用户界面

This commit is contained in:
2026-01-13 19:11:02 +07:00
parent 4a535dc871
commit 25cf78276b
2 changed files with 32 additions and 18 deletions

View File

@@ -171,7 +171,7 @@ function getAccountTypeName(type: AccountType) {
选择币种
</ion-label>
<div
class="flex items-center justify-between bg-text-900 rounded-2xl p-4 cursor-pointer"
class="flex items-center justify-between bg-faint rounded-2xl p-4 cursor-pointer"
@click="openSelectCurrency"
>
<div class="flex items-center gap-3">
@@ -189,7 +189,7 @@ function getAccountTypeName(type: AccountType) {
<div class="relative flex flex-col gap-3">
<Field name="fromAccount">
<template #default="{ value }">
<div class="flex flex-col bg-text-900 rounded-2xl p-3">
<div class="flex flex-col bg-faint rounded-2xl p-3">
<span class="text-xs text-text-500">{{ t('transfer.from') }}</span>
<div class="pt-2">
<span class="text-base font-medium">{{ getAccountTypeName(value) }}</span>
@@ -211,7 +211,7 @@ function getAccountTypeName(type: AccountType) {
<Field name="toAccount">
<template #default="{ value }">
<div class="flex flex-col bg-text-900 rounded-2xl p-3">
<div class="flex flex-col bg-faint rounded-2xl p-3">
<span class="text-xs text-text-500">{{ t('transfer.to') }}</span>
<div class="pt-2">
<span class="text-base font-medium">{{ getAccountTypeName(value) }}</span>