vxe-design
Version:
A PC-based visual designer based on Vxe UI, used for building zero-code and low-code platforms
31 lines (27 loc) • 977 B
text/typescript
import { handleGetFormDesignWidgetName } from '../render/util'
import { getI18n } from '@vxe-ui/core'
import XEUtils from 'xe-utils'
import { WidgetDataSourceOptionObjVO } from '../../form-design/src/use'
import type { VxeSelectPropTypes } from 'vxe-pc-ui'
import type { VxeGlobalRendererHandles } from '../../../types'
export interface WidgetVxeSelectFormObjVO {
placeholder: string
options: WidgetDataSourceOptionObjVO[],
multiple: VxeSelectPropTypes.Multiple
}
export const getWidgetVxeSelectConfig = (): VxeGlobalRendererHandles.CreateFormDesignWidgetConfigObj<WidgetVxeSelectFormObjVO> => {
return {
title: handleGetFormDesignWidgetName,
icon: 'vxe-icon-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
}
}
}