1、房屋收费
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

2、退费审核
3、房间添加套内面积
This commit is contained in:
2025-07-18 18:40:13 +08:00
parent 8c606397df
commit a5f93c3a6c
21 changed files with 1801 additions and 96 deletions

View File

@@ -43,9 +43,13 @@ export const columns: VxeGridProps['columns'] = [
field: 'roomTypeName',
},
{
title: '面积',
title: '建筑面积',
field: 'area',
},
{
title: '套内面积',
field: 'insideInArea',
},
{
title: '户型',
field: 'layout',
@@ -110,10 +114,18 @@ export const modalSchema: FormSchemaGetter = () => [
},
},
{
label: '面积',
label: '建筑面积',
fieldName: 'area',
component: 'Input',
},
{
label: '套内面积',
fieldName: 'insideInArea',
component: 'InputNumber',
componentProps:{
min:0,
}
},
{
label: '户型',
fieldName: 'layout',