| 公司 ID | {{ detailData.id }}复制 |
| 公司名称 | {{ detailData.name }} |
| 最大设备数 | {{ detailData.maxDevices }} |
| 状态 | {{ detailData.isActive ? '正常' : '停用' }} |
| 到期时间 | {{ detailData.expiresAt ? fmtDate(detailData.expiresAt) : '永不过期' }} |
| 备注 | {{ detailData.remark || '—' }} |
| 创建时间 | {{ fmtDate(detailData.createdAt) }} |
| 设备 ID | 设备名称 | 状态 | 注册时间 | 最后验证 | 操作 |
|---|---|---|---|---|---|
| {{ d.deviceId }} | {{ d.deviceName || '—' }} | {{ d.isActive ? '正常' : '已停用' }} | {{ fmtDate(d.registeredAt) }} | {{ d.lastVerifiedAt ? fmtDate(d.lastVerifiedAt) : '—' }} |
| 公司名称 | 公司 ID(打包用) | 设备数 | 状态 | 到期时间 | 创建时间 | 操作 |
|---|---|---|---|---|---|---|
| {{ c.name }} | {{ c.id }} 复制 | {{ c.registeredDevices || 0 }} / {{ c.maxDevices }} | {{ statusLabel(c) }} | {{ c.expiresAt ? fmtDate(c.expiresAt) : '永不过期' }} | {{ fmtDate(c.createdAt) }} |