vxe-design
Version:
A PC-based visual designer based on Vxe UI, used for building zero-code and low-code platforms
36 lines (31 loc) • 1.04 kB
text/typescript
import { handleGetFormDesignWidgetName } from '../render/util'
import type { VxeUploadPropTypes } from 'vxe-pc-ui'
import type { VxeGlobalRendererHandles } from '../../../types'
export function getLimitSizeOptions () {
const sizeOpts: { label: string, value: VxeUploadPropTypes.LimitSize }[] = [
{ label: '无限制', value: '' }
]
const sizeList = [1, 2, 5, 10, 20, 50, 100, 200, 500]
sizeList.forEach(num => {
sizeOpts.push(
{ label: `${num}M`, value: num }
)
})
return sizeOpts
}
export interface WidgetVxeUploadFileFormObjVO {
limitCount: VxeUploadPropTypes.LimitCount
limitSize: VxeUploadPropTypes.LimitSize
multiple: VxeUploadPropTypes.Multiple
}
export const getWidgetVxeUploadFileConfig = (): VxeGlobalRendererHandles.CreateFormDesignWidgetConfigObj<WidgetVxeUploadFileFormObjVO> => {
return {
title: handleGetFormDesignWidgetName,
icon: 'vxe-icon-file',
options: {
limitCount: '',
limitSize: 100,
multiple: false
}
}
}