From d6a96934828f9679e67e13bcec9d20b3a32dd64d Mon Sep 17 00:00:00 2001
From: sexygoat <1538832180@qq.com>
Date: Wed, 6 May 2026 10:26:05 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8D=A1=E6=A7=BD-=E9=92=B1=E5=8C=85?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
components/FunctionCard.vue | 2 +-
pages/auth/auth.vue | 5 ++++-
pages/switch/switch.vue | 3 ++-
3 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/components/FunctionCard.vue b/components/FunctionCard.vue
index c7c311b..d597836 100644
--- a/components/FunctionCard.vue
+++ b/components/FunctionCard.vue
@@ -137,7 +137,7 @@
const emit = defineEmits(['enter', 'sync']);
- const walletText = computed(() => '钱包(¥:' + (props.walletBalance ?? 0) + ')');
+ const walletText = computed(() => '钱包('+'¥'+ (props.walletBalance ?? 0) + ')');
const handleBindPhone = () => {
if (props.alreadyBindPhone) {
diff --git a/pages/auth/auth.vue b/pages/auth/auth.vue
index f007bf7..930d062 100644
--- a/pages/auth/auth.vue
+++ b/pages/auth/auth.vue
@@ -14,6 +14,7 @@
ICCID: {{ item.iccid }}
运营商: {{ getLogo(item.category).name }}
+ 卡槽位: {{ item.slot_position || '-' }}
@@ -73,6 +74,7 @@
list.splice(0, list.length, ...data.cards.map(card => ({
iccid: card.iccid,
category: getCarrierCategory(card.carrier_name),
+ slot_position: card.slot_position,
isRealName: card.real_name_status === 1
})));
}
@@ -82,6 +84,7 @@
list.splice(0, list.length, {
iccid: assetData.identifier,
category: getCarrierCategory(assetData.carrier_name),
+ slot_position: 1,
isRealName: assetData.real_name_status === 1
});
}
@@ -244,4 +247,4 @@
.empty-title { font-size: 32rpx; font-weight: 600; color: var(--text-primary); margin-bottom: 16rpx; }
.empty-desc { font-size: 26rpx; color: var(--text-tertiary); text-align: center; }
}
-
\ No newline at end of file
+
diff --git a/pages/switch/switch.vue b/pages/switch/switch.vue
index ee15f7a..a68b777 100644
--- a/pages/switch/switch.vue
+++ b/pages/switch/switch.vue
@@ -24,6 +24,7 @@
{{ item.real_name_status === 1 ? '已实名' : '未实名' }}
+ 卡槽位: {{ item.slot_position || '-' }}
@@ -169,4 +170,4 @@
.empty-title { font-size: 32rpx; font-weight: 600; color: var(--text-primary); margin-bottom: 16rpx; }
.empty-desc { font-size: 26rpx; color: var(--text-tertiary); text-align: center; }
}
-
\ No newline at end of file
+