From 690d930a1785b1c278d361f52b79efd9e67c3515 Mon Sep 17 00:00:00 2001 From: XuqmGroup Date: Fri, 15 May 2026 21:30:09 +0800 Subject: [PATCH] Show license device user info --- tenant-platform/src/api/license.ts | 8 ++++++ .../views/license/LicenseManagementView.vue | 26 +++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/tenant-platform/src/api/license.ts b/tenant-platform/src/api/license.ts index 2dca8a7..3a5c675 100644 --- a/tenant-platform/src/api/license.ts +++ b/tenant-platform/src/api/license.ts @@ -83,6 +83,14 @@ export interface LicenseDevice { companyId: string deviceId: string deviceName?: string | null + deviceModel?: string | null + deviceVendor?: string | null + osVersion?: string | null + userId?: string | null + userName?: string | null + userEmail?: string | null + userPhone?: string | null + userInfoJson?: string | null registeredAt: string lastVerifiedAt?: string | null isActive: boolean diff --git a/tenant-platform/src/views/license/LicenseManagementView.vue b/tenant-platform/src/views/license/LicenseManagementView.vue index f75a470..40c4b3b 100644 --- a/tenant-platform/src/views/license/LicenseManagementView.vue +++ b/tenant-platform/src/views/license/LicenseManagementView.vue @@ -80,6 +80,30 @@ + + + + + + + + + @@ -347,4 +371,6 @@ onMounted(() => { .table-wrap { overflow-x: auto; } .portal-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; } .portal-bar-title { font-size: 18px; font-weight: 600; } +.user-cell { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; } +.user-cell small { color: #909399; font-size: 12px; }