wms-antdvue/.svn/pristine/b7/b77386299156a3a6b1283a9ba8a8f6b49e75642b.svn-base
2024-11-07 16:33:03 +08:00

53 lines
804 B
Plaintext

import { h } from 'vue';
export const columns = [
{
title: '会话编号',
dataIndex: 'tokenId',
fixed: 'left',
width: 200,
},
{
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,
},
];