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