feat:房间详情展示入驻面积
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import type { PageQuery, BaseEntity } from '#/api/common';
|
||||
import type {PageQuery, BaseEntity} from '#/api/common';
|
||||
|
||||
export interface Resident_unitVO {
|
||||
/**
|
||||
@@ -67,8 +67,8 @@ export interface Resident_unitVO {
|
||||
*/
|
||||
authGroupName?: string;
|
||||
// 授权期限
|
||||
authBegDate?:string;//开始
|
||||
authEndDate?:string;//结束
|
||||
authBegDate?: string;//开始
|
||||
authEndDate?: string;//结束
|
||||
|
||||
}
|
||||
|
||||
@@ -177,8 +177,8 @@ export interface Resident_unitQuery extends PageQuery {
|
||||
number?: number;
|
||||
|
||||
/**
|
||||
* 日期范围参数
|
||||
*/
|
||||
* 日期范围参数
|
||||
*/
|
||||
params?: any;
|
||||
}
|
||||
|
||||
@@ -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