fix:建筑管理、楼层管理
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-30 15:27:32 +08:00
parent 48f0011e78
commit 8f6dc2ba11
6 changed files with 47 additions and 31 deletions

View File

@@ -105,12 +105,20 @@ export const modalSchema: FormSchemaGetter = () => [
{
label: '总层数',
fieldName: 'floorCount',
component: 'Input',
component: 'InputNumber',
componentProps: {
min:1,
precision:0,
},
},
{
label: '单元数',
fieldName: 'unitCount',
component: 'Input',
component: 'InputNumber',
componentProps: {
min:1,
precision:0,
},
},
{
label: '建筑类型',
@@ -124,14 +132,17 @@ export const modalSchema: FormSchemaGetter = () => [
{
label: '电梯数量',
fieldName: 'elevatorCount',
component: 'Input',
component: 'InputNumber',
componentProps: {
min:0,
precision:0,
},
},
{
label: '竣工日期',
fieldName: 'completionDate',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD',
valueFormat: 'YYYY-MM-DD',
},