@@ -10,7 +10,7 @@
:loading="innerLoadingMap[record.groupcode]"
row-key="id"
>
- <template #bodyCell="{ column }"> </template>
+ <template #bodyCell="{ column }">{{ record[column.key] ?? '--' }}</template>
</a-table>
</template>
</BasicTable>
@@ -66,27 +66,42 @@ const innerColumns = ref([
title: '设备名称',
dataIndex: 'devicename',
key: 'devicename',
+ width: 180,
+ align: 'center',
},
{
title: '用户',
dataIndex: 'realname',
key: 'realname',
title: '操作记录',
dataIndex: 'strremark',
key: 'strremark',
+ },
+ {
+ title: '操作明细',
+ dataIndex: 'content',
+ key: 'content',
-
title: 'IP',
dataIndex: 'ip',
key: 'ip',
title: '操作时间',
dataIndex: 'createTime',
key: 'createTime',
]);
// 展开行相关