tachybase_todo/packages/client/src/schemas/database-field/interfaces/chinaRegion.ts
2021-08-16 12:35:52 +08:00

42 lines
966 B
TypeScript

import { defaultProps } from './properties';
import { FieldOptions } from '.';
export const chinaRegion: FieldOptions = {
name: 'chinaRegion',
type: 'object',
group: 'choices',
order: 7,
title: '中国行政区划',
default: {
dataType: 'belongsToMany',
target: 'china_regions',
targetKey: 'code',
// name,
uiSchema: {
type: 'array',
// title,
'x-component': 'Cascader',
'x-component-props': {
changeOnSelect: true,
loadData: '{{ ChinaRegion.loadData }}',
useDataSource: '{{ ChinaRegion.useDataSource }}',
labelInValue: true,
maxLevel: 3,
fieldNames: {
label: 'name',
value: 'code',
children: 'children',
},
},
'x-decorator': 'FormItem',
'x-designable-bar': 'Cascader.DesignableBar',
},
},
properties: {
...defaultProps,
},
operations: [
{ label: '等于', value: 'code.in' },
],
};