You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
498 B
28 lines
498 B
import type { CrudSchema } from '@/hooks/web/useCrudSchemas'
|
|
|
|
export const ProcessSearch = useCrudSchemas(reactive<CrudSchema[]>([
|
|
{
|
|
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',
|
|
|
|
},
|
|
]))
|
|
|