This commit is contained in:
u2nyakim 2025-08-28 14:04:50 +08:00
parent f9f8410d9b
commit 1d43ac7507
2 changed files with 24 additions and 2 deletions

View File

@ -7,6 +7,13 @@
:column="mobile ? 1 : 2"
class="detail-table"
>
<el-descriptions-item label="客户端">
<div>{{ data.clientName }} - {{ data.clientVersion }}</div>
</el-descriptions-item>
<el-descriptions-item label="客户端ID">
<div>{{ data.clientId }}</div>
</el-descriptions-item>
<el-descriptions-item label="ContextId">
<div>{{ data.contextId }}</div>
</el-descriptions-item>

View File

@ -31,6 +31,10 @@
详情
</el-link>
</template>
<template #client="{ row }">
{{ row.clientName }} - {{ row.clientVersion }}
</template>
</ele-pro-table>
</ele-card>
<!-- 详情弹窗 -->
@ -68,8 +72,19 @@
type: 'index',
columnKey: 'index',
width: 50,
align: 'center' /* ,
fixed: 'left' */
align: 'center'
},
{
prop: 'clientId',
label: '客户端ID',
hideInTable: true,
width: 280
},
{
prop: 'clientName',
slot: 'client',
label: '客户端',
width: 130
},
{
prop: 'contextId',