feat:房间详情展示入驻面积
This commit is contained in:
@@ -240,4 +240,9 @@ export interface Unit extends BaseEntity {
|
||||
*/
|
||||
remark?: string;
|
||||
|
||||
/**
|
||||
* 入驻面积
|
||||
*/
|
||||
area?: string;
|
||||
|
||||
}
|
||||
|
@@ -44,7 +44,7 @@ async function handleOpenChange(open: boolean) {
|
||||
|
||||
<template>
|
||||
<BasicModal :footer="false" :fullscreen-button="false" title="入驻单位信息" class="w-[70%]">
|
||||
<Descriptions v-if="unitDetail" size="small" :column="2" bordered :labelStyle="{width:'110px'}">
|
||||
<Descriptions v-if="unitDetail" size="small" :column="2" bordered :labelStyle="{width:'120px'}">
|
||||
<DescriptionsItem label="单位编号">
|
||||
{{ unitDetail.id }}
|
||||
</DescriptionsItem>
|
||||
@@ -62,6 +62,9 @@ async function handleOpenChange(open: boolean) {
|
||||
<DescriptionsItem label="入驻位置" :span="2">
|
||||
{{ unitDetail.locationDetail }}
|
||||
</DescriptionsItem>
|
||||
<DescriptionsItem label="入驻面积(㎡)" :span="2">
|
||||
{{ unitDetail.area }}
|
||||
</DescriptionsItem>
|
||||
<DescriptionsItem label="入驻时间">
|
||||
{{ unitDetail.time }}
|
||||
</DescriptionsItem>
|
||||
|
Reference in New Issue
Block a user