fix: inputnumber

This commit is contained in:
xingyu4j 2022-11-17 13:20:55 +08:00
parent 2de05a87f4
commit f606bfb12b
3 changed files with 11 additions and 6 deletions

View File

@ -41,7 +41,6 @@ const crudSchemas = reactive<VxeCrudSchema>({
#elseif(!("" != $column.dictType)) #elseif(!("" != $column.dictType))
#if ($column.htmlType == "datetime")## 时间框 #if ($column.htmlType == "datetime")## 时间框
form: { form: {
show: true,
component: 'DatePicker', component: 'DatePicker',
componentProps: { componentProps: {
type: 'datetime', type: 'datetime',
@ -50,7 +49,6 @@ const crudSchemas = reactive<VxeCrudSchema>({
}, },
#elseif($column.htmlType == "editor")## 文本编辑器 #elseif($column.htmlType == "editor")## 文本编辑器
form: { form: {
show: true,
component: 'Editor', component: 'Editor',
colProps: { colProps: {
span: 24 span: 24
@ -61,7 +59,6 @@ const crudSchemas = reactive<VxeCrudSchema>({
}, },
#elseif($column.htmlType == "textarea")## 文本框 #elseif($column.htmlType == "textarea")## 文本框
form: { form: {
show: true,
component: 'Input', component: 'Input',
componentProps: { componentProps: {
type: 'textarea', type: 'textarea',
@ -71,6 +68,11 @@ const crudSchemas = reactive<VxeCrudSchema>({
span: 24 span: 24
} }
}, },
#elseif(${column.javaType.toLowerCase()} == "long" || ${column.javaType.toLowerCase()} == "integer")## 数字类型
form: {
component: 'InputNumber',
value: 0
},
#end #end
#end #end
#if ($column.listOperationResult) #if ($column.listOperationResult)

View File

@ -62,7 +62,8 @@ const schema = reactive<FormSchema[]>([
{ {
field: 'sex', field: 'sex',
label: t('profile.user.sex'), label: t('profile.user.sex'),
component: 'InputNumber' component: 'InputNumber',
value: 0
} }
]) ])
const sexVlue = ref<number>() const sexVlue = ref<number>()

View File

@ -52,7 +52,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
title: '访问令牌的有效期', title: '访问令牌的有效期',
field: 'accessTokenValiditySeconds', field: 'accessTokenValiditySeconds',
form: { form: {
component: 'InputNumber' component: 'InputNumber',
value: 0
}, },
table: { table: {
slots: { slots: {
@ -64,7 +65,8 @@ const crudSchemas = reactive<VxeCrudSchema>({
title: '刷新令牌的有效期', title: '刷新令牌的有效期',
field: 'refreshTokenValiditySeconds', field: 'refreshTokenValiditySeconds',
form: { form: {
component: 'InputNumber' component: 'InputNumber',
value: 0
}, },
table: { table: {
slots: { slots: {