vxe-pc-ui
Version:
A vue based PC component library
30 lines (26 loc) • 954 B
text/typescript
import { handleGetFormDesignWidgetName } from '../render/util'
import { getI18n } from '@vxe-ui/core'
import XEUtils from 'xe-utils'
import { WidgetDataSourceOptionObjVO } from '../src/use'
import type { VxeGlobalRendererHandles, VxeTreeSelectPropTypes } from '../../../types'
export interface WidgetVxeTreeSelectFormObjVO {
placeholder: string
options: WidgetDataSourceOptionObjVO[],
multiple: VxeTreeSelectPropTypes.Multiple
}
export const getWidgetVxeTreeSelectConfig = (): VxeGlobalRendererHandles.CreateFormDesignWidgetConfigObj<WidgetVxeTreeSelectFormObjVO> => {
return {
title: handleGetFormDesignWidgetName,
icon: 'vxe-icon-tree-select',
query: true,
options: {
placeholder: '',
options: XEUtils.range(0, 3).map((v, i) => {
return {
value: getI18n('vxe.formDesign.widgetProp.dataSource.defValue', [i + 1])
}
}),
multiple: false
}
}
}