wms-antdvue/.svn/pristine/4a/4aa4a729c75dca69d1d51f7317f06d14cc55b985.svn-base
2024-11-07 16:33:03 +08:00

45 lines
672 B
Plaintext

import { h } from 'vue';
export const columns = [
{
title: '会话编号',
dataIndex: 'tokenId',
},
{
title: '登录名称',
dataIndex: 'username',
},
{
title: '部门名称',
dataIndex: 'deptName',
},
{
title: 'IP地址',
dataIndex: 'ipAddr',
},
{
title: '登录地点',
dataIndex: 'loginLocation',
},
{
title: '浏览器',
dataIndex: 'browser',
},
{
title: '操作系统',
dataIndex: 'os',
},
{
title: '登录时间',
dataIndex: 'loginTime',
width: 180,
},
{
title: '操作',
fixed:'right',
dataIndex: 'action',
key: 'action',
width: 100,
},
];