mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 16:26:42 +00:00
3b5b732a1a
* feat: plugin-mock-collections * fix: mock bug * feat: field interfaces * fix: field interface * fix: formula * fix: file collection * fix: map * refactor: change api path from :create to :mock * fix: avoid test failed * chore: remove useless code * fix: mock records * fix: association * feat: custom data * fix: mockAttachment * fix: count --------- Co-authored-by: Rain <958414905@qq.com>
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
export const lineString = {
|
|
options: () => ({
|
|
type: 'lineString',
|
|
uiSchema: {
|
|
type: 'void',
|
|
'x-component': 'Map',
|
|
'x-component-designer': 'Map.Designer',
|
|
'x-component-props': {
|
|
mapType: 'amap',
|
|
},
|
|
},
|
|
}),
|
|
};
|