This commit is contained in:
FLL
2025-09-05 14:44:26 +08:00
parent 3f2fe7bdd2
commit 6ee86ba7f9
4 changed files with 27 additions and 33 deletions

View File

@@ -45,14 +45,14 @@ export const querySchema: FormSchemaGetter = () => [
// export const columns: () => VxeGridProps['columns'] = () => [
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: '建筑名称',
field: 'buildingName',
},
{
title: '社区',
field: 'communityText',
},
{
title: '建筑',
field: 'buildingName',
},
{
title: '总层数',
field: 'floorCount',
@@ -177,7 +177,6 @@ export const modalSchema: FormSchemaGetter = () => [
min:0,
precision:2,
},
rules: 'required',
},
{
label: '套内面积(㎡)',
@@ -187,7 +186,6 @@ export const modalSchema: FormSchemaGetter = () => [
min:0,
precision:2,
},
rules: 'required',
},
{
label: '公摊面积(㎡)',
@@ -197,6 +195,5 @@ export const modalSchema: FormSchemaGetter = () => [
min:0,
precision:2,
},
rules: 'required',
},
];