diff --git a/pages/auth/auth.vue b/pages/auth/auth.vue
index 8f1f259..8372599 100644
--- a/pages/auth/auth.vue
+++ b/pages/auth/auth.vue
@@ -6,22 +6,29 @@
当前账号下暂无可实名的卡片
-
-
-
-
+
+
+
+
+
+
+ {{ getCarrier(item.carrier_type).name }}
+
+ ICCID
+ {{ item.iccid }}
+
-
- ICCID: {{ item.iccid }}
- 运营商: {{ getCarrier(item.carrier_type).name }}
- 卡槽位: {{ item.slot_position || '-' }}
+
+
+
+ 卡槽 {{ item.slot_position || '-' }}
+
+
+
+
+
-
-
- 已实名
- 去实名
-
@@ -58,10 +65,16 @@
};
const carrierLogoMap = {
- CMCC: 'https://img2.baidu.com/it/u=915783975,1594870591&fm=253&fmt=auto&app=120&f=PNG?w=182&h=182',
- CUCC: 'https://img1.baidu.com/it/u=2816777816,1756344384&fm=253&fmt=auto&app=120&f=JPEG?w=500&h=500',
- CTCC: 'https://img2.baidu.com/it/u=139558247,3893370039&fm=253&fmt=auto?w=529&h=500',
- CBN: 'https://img1.baidu.com/it/u=3160680953,3401650303&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=500'
+ CMCC: '/static/中国移动.png',
+ CUCC: '/static/中国联通.png',
+ CTCC: '/static/中国电信.png',
+ CBN: '/static/中国广电.png'
+ };
+
+ const slotIconMap = {
+ 1: '/static/卡槽1.png',
+ 2: '/static/卡槽2.png',
+ 3: '/static/卡槽3.png'
};
const getCarrier = (carrierType) => {
@@ -71,6 +84,8 @@
};
};
+ const getSlotIcon = (slotPosition) => slotIconMap[Number(slotPosition)] || slotIconMap[1];
+
const loadCards = async () => {
loading.value = true;
try {
@@ -140,15 +155,100 @@