up.
This commit is contained in:
parent
f9f8410d9b
commit
1d43ac7507
@ -7,6 +7,13 @@
|
|||||||
:column="mobile ? 1 : 2"
|
:column="mobile ? 1 : 2"
|
||||||
class="detail-table"
|
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">
|
<el-descriptions-item label="ContextId">
|
||||||
<div>{{ data.contextId }}</div>
|
<div>{{ data.contextId }}</div>
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
|
|||||||
@ -31,6 +31,10 @@
|
|||||||
详情
|
详情
|
||||||
</el-link>
|
</el-link>
|
||||||
</template>
|
</template>
|
||||||
|
<template #client="{ row }">
|
||||||
|
{{ row.clientName }} - {{ row.clientVersion }}
|
||||||
|
</template>
|
||||||
|
|
||||||
</ele-pro-table>
|
</ele-pro-table>
|
||||||
</ele-card>
|
</ele-card>
|
||||||
<!-- 详情弹窗 -->
|
<!-- 详情弹窗 -->
|
||||||
@ -68,8 +72,19 @@
|
|||||||
type: 'index',
|
type: 'index',
|
||||||
columnKey: 'index',
|
columnKey: 'index',
|
||||||
width: 50,
|
width: 50,
|
||||||
align: 'center' /* ,
|
align: 'center'
|
||||||
fixed: 'left' */
|
},
|
||||||
|
{
|
||||||
|
prop: 'clientId',
|
||||||
|
label: '客户端ID',
|
||||||
|
hideInTable: true,
|
||||||
|
width: 280
|
||||||
|
},
|
||||||
|
{
|
||||||
|
prop: 'clientName',
|
||||||
|
slot: 'client',
|
||||||
|
label: '客户端',
|
||||||
|
width: 130
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'contextId',
|
prop: 'contextId',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user