This commit is contained in:
FLL
2025-09-04 17:02:24 +08:00
parent b0d48d0425
commit 9cefe1847e
6 changed files with 154 additions and 62 deletions

View File

@@ -23,7 +23,7 @@ const [BasicForm, formApi] = useVbenForm({
// 默认占满两列 // 默认占满两列
formItemClass: 'col-span-1', formItemClass: 'col-span-1',
// 默认label宽度 px // 默认label宽度 px
labelWidth: 80, labelWidth: 90,
// 通用配置项 会影响到所有表单项 // 通用配置项 会影响到所有表单项
componentProps: { componentProps: {
class: 'w-full', class: 'w-full',

View File

@@ -49,6 +49,10 @@ export const columns: VxeGridProps['columns'] = [
title: '建筑名称', title: '建筑名称',
field: 'buildingName', field: 'buildingName',
}, },
{
title: '社区',
field: 'communityText',
},
{ {
title: '总层数', title: '总层数',
field: 'floorCount', field: 'floorCount',
@@ -73,6 +77,18 @@ export const columns: VxeGridProps['columns'] = [
title: '地址', title: '地址',
field: 'addr', field: 'addr',
}, },
{
title: '建筑面积(㎡)',
field: 'area',
},
{
title: '套内面积(㎡)',
field: 'insideInArea',
},
{
title: '公摊面积(㎡)',
field: 'sharedArea',
},
{ {
field: 'action', field: 'action',
fixed: 'right', fixed: 'right',
@@ -153,4 +169,34 @@ export const modalSchema: FormSchemaGetter = () => [
component: 'Input', component: 'Input',
rules: 'required', rules: 'required',
}, },
{
label: '建筑面积(㎡)',
fieldName: 'area',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
{
label: '套内面积(㎡)',
fieldName: 'insideInArea',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
{
label: '公摊面积(㎡)',
fieldName: 'sharedArea',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
]; ];

View File

@@ -13,6 +13,14 @@ export const querySchema: FormSchemaGetter = () => [
// export const columns: () => VxeGridProps['columns'] = () => [ // export const columns: () => VxeGridProps['columns'] = () => [
export const columns: VxeGridProps['columns'] = [ export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 }, { type: 'checkbox', width: 60 },
{
title: '社区',
field: 'communityText',
},
{
title: '建筑',
field: 'buildingText',
},
{ {
title: '楼层名称', title: '楼层名称',
field: 'floorName', field: 'floorName',
@@ -33,6 +41,18 @@ export const columns: VxeGridProps['columns'] = [
title: '层高', title: '层高',
field: 'floorHeight', field: 'floorHeight',
}, },
{
title: '建筑面积(㎡)',
field: 'area',
},
{
title: '套内面积(㎡)',
field: 'insideInArea',
},
{
title: '公摊面积(㎡)',
field: 'sharedArea',
},
{ {
field: 'action', field: 'action',
fixed: 'right', fixed: 'right',
@@ -95,4 +115,34 @@ export const modalSchema: FormSchemaGetter = () => [
precision:0, precision:0,
}, },
}, },
{
label: '建筑面积(㎡)',
fieldName: 'area',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
{
label: '套内面积(㎡)',
fieldName: 'insideInArea',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
{
label: '公摊面积(㎡)',
fieldName: 'sharedArea',
component: 'InputNumber',
componentProps: {
min:0,
precision:2,
},
rules: 'required',
},
]; ];

View File

@@ -22,9 +22,9 @@ const title = computed(() => {
const [BasicForm, formApi] = useVbenForm({ const [BasicForm, formApi] = useVbenForm({
commonConfig: { commonConfig: {
// 默认占满两列 // 默认占满两列
formItemClass: 'col-span-2', formItemClass: 'col-span-1',
// 默认label宽度 px // 默认label宽度 px
labelWidth: 80, labelWidth: 90,
// 通用配置项 会影响到所有表单项 // 通用配置项 会影响到所有表单项
componentProps: { componentProps: {
class: 'w-full', class: 'w-full',
@@ -44,7 +44,7 @@ const { onBeforeClose, markInitialized, resetInitialized } = useBeforeCloseDiff(
const [BasicModal, modalApi] = useVbenModal({ const [BasicModal, modalApi] = useVbenModal({
// 在这里更改宽度 // 在这里更改宽度
class: 'w-[550px]', class: 'w-[60%]',
fullscreenButton: false, fullscreenButton: false,
onBeforeClose, onBeforeClose,
onClosed: handleClosed, onClosed: handleClosed,

View File

@@ -4,7 +4,7 @@ import type { DeptTree } from '#/api/system/user/model';
import { onMounted, ref } from 'vue'; import { onMounted, ref } from 'vue';
import { SyncOutlined } from '@ant-design/icons-vue'; import { SyncOutlined } from '@ant-design/icons-vue';
import { Empty, InputSearch, Skeleton, Tree } from 'ant-design-vue'; import { Empty, InputSearch, Skeleton, Tree } from 'ant-design-vue';
import { getDeptTree } from '#/api/system/user'; import { communityTree } from '#/api/property/community';
defineOptions({ inheritAttrs: false }); defineOptions({ inheritAttrs: false });
@@ -41,7 +41,7 @@ async function loadTree() {
showTreeSkeleton.value = true; showTreeSkeleton.value = true;
searchValue.value = ''; searchValue.value = '';
selectDeptId.value = []; selectDeptId.value = [];
const ret = await getDeptTree(); const ret = await communityTree(3);
deptTreeArray.value = ret; deptTreeArray.value = ret;
showTreeSkeleton.value = false; showTreeSkeleton.value = false;
} }

View File

@@ -120,13 +120,10 @@ function handleDownloadExcel() {
</script> </script>
<template> <template>
<div style="display: grid;grid-template-columns: 1fr 5fr;"> <Page :auto-content-height="true" style="width: 100%">
<div style="padding: 15px 0 15px 15px;background-color: red"> <div class="flex h-full gap-[15px]">
<FloorTree></FloorTree> <FloorTree></FloorTree>
</div> <BasicTable class="flex-1 overflow-hidden" table-title="房间信息列表">
<div>
<Page :auto-content-height="true">
<BasicTable table-title="房间信息列表">
<template #toolbar-tools> <template #toolbar-tools>
<Space> <Space>
<a-button <a-button
@@ -177,8 +174,7 @@ function handleDownloadExcel() {
</Space> </Space>
</template> </template>
</BasicTable> </BasicTable>
</div>
<RoomModal @reload="tableApi.query()" /> <RoomModal @reload="tableApi.query()" />
</Page> </Page>
</div>
</div>
</template> </template>