@jdlinker/ui
Version:
jdLinker UI库,基于ant-design-vue封装
17 lines (16 loc) • 481 B
text/typescript
export const typeOptions = [
{ label: '或者', value: 'or' },
{ label: '并且', value: 'and' },
]
export const termType = [
{ label: '=', value: 'eq' },
{ label: '!=', value: 'not' },
{ label: '包含', value: 'like' },
{ label: '不包含', value: 'nlike' },
{ label: '>', value: 'gt' },
{ label: '>=', value: 'gte' },
{ label: '<', value: 'lt' },
{ label: '<=', value: 'lte' },
{ label: '属于', value: 'in' },
{ label: '不属于', value: 'nin' },
];