import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { AccountRole } from '../../../entity/account/account-role' const columns = ref[]>([ { title: '角色名称', dataIndex: 'roleName' }, { title: '所属单位', dataIndex: 'orgName' }, { title: '更新人', dataIndex: 'updateUserName' }, { title: '更新时间', dataIndex: 'gmtModified' }, { title: '备注', ellipsisRow: 2, dataIndex: 'memo' } ]) export default columns