import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { AccountOrg } from '../../../entity/account/account-org' const columns = ref[]>([ { title: '单位名称', dataIndex: 'orgName' }, { title: '联系人', dataIndex: 'contacts' }, { title: '联系电话', dataIndex: 'phone' }, { title: '单位地址', dataIndex: 'address' }, { title: '更新人', dataIndex: 'updateUserName' }, { title: '更新时间', dataIndex: 'gmtModified' } ]) export default columns