import type { CrudSchema } from '@/hooks/web/useCrudSchemas' export const ProcessSearch = useCrudSchemas(reactive([ { label: '代码', field: 'code', sort: 'custom', isSearch: true, }, { label: '名称', field: 'name', sort: 'custom', isSearch: true, }, { label: '类型', field: 'type', dictType: DICT_TYPE.PROCESS_TYPE, dictClass: 'string', isSearch: true, isTable: true, sort: 'custom', }, ]))