import { ref } from 'vue' import { ColumnsProps } from '../../../components/table/table-helper' import { DynamicFormTable } from '../../../entity/dynamic/dynamic-form-table' import { DEFAULT_DYNAMIC_TABLE_PREFIX } from '../common' const columns = ref[]>([ { title: '表编号', dataIndex: 'tableName', customRender: ({ text }) => text.replace(DEFAULT_DYNAMIC_TABLE_PREFIX, '') }, { title: '表名称', dataIndex: 'tableComment' }, { title: '依赖表名称', dataIndex: 'tableComment' }, { title: '更新人', dataIndex: 'updateUserName' }, { title: '更新时间', dataIndex: 'gmtModified' } ]) export default columns