From 1931a096b008a62a4f147d3b3961b99ced2f4087 Mon Sep 17 00:00:00 2001 From: sexygoat <1538832180@qq.com> Date: Wed, 15 Apr 2026 10:14:53 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20ICCID=E6=96=B0=E5=A2=9E=E8=AE=BE?= =?UTF-8?q?=E5=A4=87=E5=BA=97=E9=93=BA=E5=90=8D=E7=A7=B0,=E5=A5=97?= =?UTF-8?q?=E9=A4=90=E7=B3=BB=E5=88=97=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/api/device.ts | 1 + src/views/asset-management/device-list/index.vue | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/src/types/api/device.ts b/src/types/api/device.ts index c513bce..f006f92 100644 --- a/src/types/api/device.ts +++ b/src/types/api/device.ts @@ -45,6 +45,7 @@ export interface Device { created_at: string // 创建时间 updated_at: string // 更新时间 series_id?: number | null // 套餐系列ID + series_name?: string // 套餐系列名称 online_status?: DeviceOnlineStatus // 在线状态:0=未知, 1=在线, 2=离线 last_online_time?: string | null // 最后在线时间 software_version?: string // 固件版本号 diff --git a/src/views/asset-management/device-list/index.vue b/src/views/asset-management/device-list/index.vue index 502e5e2..cdcdc47 100644 --- a/src/views/asset-management/device-list/index.vue +++ b/src/views/asset-management/device-list/index.vue @@ -776,6 +776,8 @@ { label: '设备名称', prop: 'device_name' }, { label: '设备型号', prop: 'device_model' }, { label: '设备类型', prop: 'device_type' }, + { label: '店铺名称', prop: 'shop_name' }, + { label: '套餐系列', prop: 'series_name' }, { label: '制造商', prop: 'manufacturer' }, { label: '最大插槽数', prop: 'max_sim_slots' }, { label: '已绑定卡数', prop: 'bound_card_count' }, @@ -1037,6 +1039,16 @@ label: '设备类型', width: 120 }, + { + prop: 'shop_name', + label: '店铺名称', + minWidth: 120 + }, + { + prop: 'series_name', + label: '套餐系列', + minWidth: 120 + }, { prop: 'manufacturer', label: '制造商',