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 {
|
export interface Resident_unitVO {
|
||||||
/**
|
/**
|
||||||
@@ -67,8 +67,8 @@ export interface Resident_unitVO {
|
|||||||
*/
|
*/
|
||||||
authGroupName?: string;
|
authGroupName?: string;
|
||||||
// 授权期限
|
// 授权期限
|
||||||
authBegDate?:string;//开始
|
authBegDate?: string;//开始
|
||||||
authEndDate?:string;//结束
|
authEndDate?: string;//结束
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,8 +177,8 @@ export interface Resident_unitQuery extends PageQuery {
|
|||||||
number?: number;
|
number?: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 日期范围参数
|
* 日期范围参数
|
||||||
*/
|
*/
|
||||||
params?: any;
|
params?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -240,4 +240,9 @@ export interface Unit extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
remark?: string;
|
remark?: string;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 入驻面积
|
||||||
|
*/
|
||||||
|
area?: string;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -44,7 +44,7 @@ async function handleOpenChange(open: boolean) {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<BasicModal :footer="false" :fullscreen-button="false" title="入驻单位信息" class="w-[70%]">
|
<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="单位编号">
|
<DescriptionsItem label="单位编号">
|
||||||
{{ unitDetail.id }}
|
{{ unitDetail.id }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
@@ -62,6 +62,9 @@ async function handleOpenChange(open: boolean) {
|
|||||||
<DescriptionsItem label="入驻位置" :span="2">
|
<DescriptionsItem label="入驻位置" :span="2">
|
||||||
{{ unitDetail.locationDetail }}
|
{{ unitDetail.locationDetail }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
<DescriptionsItem label="入驻面积(㎡)" :span="2">
|
||||||
|
{{ unitDetail.area }}
|
||||||
|
</DescriptionsItem>
|
||||||
<DescriptionsItem label="入驻时间">
|
<DescriptionsItem label="入驻时间">
|
||||||
{{ unitDetail.time }}
|
{{ unitDetail.time }}
|
||||||
</DescriptionsItem>
|
</DescriptionsItem>
|
||||||
|
Reference in New Issue
Block a user