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

@@ -23,8 +23,9 @@ export const schema: VbenFormSchema[] = [
componentProps: {
min: 0,
precision: 2,
class: 'w-full',
placeholder: '请输入积分抵扣单价',
controlsPosition: 'right',
class: '!w-full',
},
},
{
@@ -34,8 +35,9 @@ export const schema: VbenFormSchema[] = [
help: '单次下单积分使用上限0 不限制',
componentProps: {
min: 0,
class: 'w-full',
placeholder: '请输入积分抵扣最大值',
controlsPosition: 'right',
class: '!w-full',
},
},
{
@@ -45,8 +47,9 @@ export const schema: VbenFormSchema[] = [
help: '下单支付金额按比例赠送积分(实际支付 1 元赠送多少积分)',
componentProps: {
min: 0,
class: 'w-full',
placeholder: '请输入赠送积分比例',
controlsPosition: 'right',
class: '!w-full',
},
},
];