import { dictionaryEscape, getDictionaryByCode } from '@/utils/dictionary' interface IOption { title: string prop: string type: string value: any span?: number dateOption?: any options?: any[] queryHandler?: any placeholder?: string allowCreate?: boolean number?: boolean minWidth?: number [key: string]: any } interface COption { title: string prop: string minWidth: number render?: boolean formatter?: any sortable?: boolean [key: string]: any } interface TableOptions { categoryChange: () => Promise } export function useTableOptionConfig({ categoryChange }: TableOptions) { const customOptionList: IOption[] = [ ] const fixedOptionList: IOption[] = [ { title: '企业名称', prop: 'ENTERPRISE_NAME_', type: 'input', span: 4, value: '' } ] const columnsList: COption[] = [ { title: '企业名称', prop: 'enterpriseName', minWidth: 160, sortable: true }, { title: '战略供应商', prop: 'zlNum', minWidth: 120, sortable: true, }, { title: '重要供应商', prop: 'zyNum', minWidth: 160, sortable: true }, { title: '一般供应商', prop: 'ybNum', minWidth: 120, sortable: true }, { title: 'A类供应商', prop: 'alNum', minWidth: 120, sortable: true }, { title: 'B类供应商', prop: 'blNum', minWidth: 120, sortable: true }, { title: 'C类供应商', prop: 'clNum', minWidth: 120, sortable: true } ] return { customOptionList, fixedOptionList, columnsList } }