feat:【ele】InputNumber 补全 controlsPosition、class

This commit is contained in:
YunaiV
2025-11-19 10:21:31 +08:00
parent 2144a1103b
commit 1100626968
15 changed files with 66 additions and 8 deletions

View File

@@ -66,6 +66,8 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
placeholder: '请输入用户数量',
min: 2,
controlsPosition: 'right',
class: '!w-full',
},
rules: 'required',
},
@@ -76,6 +78,8 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
placeholder: '请输入限制时长(小时)',
min: 0,
controlsPosition: 'right',
class: '!w-full',
},
rules: 'required',
},
@@ -86,6 +90,8 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
placeholder: '请输入总限购数量',
min: 0,
controlsPosition: 'right',
class: '!w-full',
},
},
{
@@ -95,6 +101,8 @@ export function useFormSchema(): VbenFormSchema[] {
componentProps: {
placeholder: '请输入单次限购数量',
min: 0,
controlsPosition: 'right',
class: '!w-full',
},
},
{