From 06a0e3649d5450cbc9c10173374650afaf24e206 Mon Sep 17 00:00:00 2001 From: mocheng <3057647414@qq.com> Date: Wed, 18 Jun 2025 16:50:58 +0800 Subject: [PATCH] wy --- apps/web-antd/.env | 2 +- .../src/api/property/accessControl/model.d.ts | 37 +- .../src/api/property/accessControl/types.ts | 271 ++++++++++++ .../src/api/property/building/model.d.ts | 15 - .../src/api/property/building/types.ts | 306 +++++++++++++ .../src/api/property/ceremonialServe/index.ts | 18 +- .../api/property/ceremonialServe/model.d.ts | 65 --- .../src/api/property/ceremonialServe/types.ts | 320 ++++++++++++++ .../ceremonialserveRoombooking/index.ts | 18 +- .../ceremonialserveRoombooking/model.d.ts | 20 +- .../ceremonialserveRoombooking/types.ts | 76 ++++ .../src/api/property/cityArea/model.d.ts | 20 - .../src/api/property/cityArea/types.ts | 126 ++++++ .../src/api/property/community/model.d.ts | 15 - .../src/api/property/community/types.ts | 195 +++++++++ .../src/api/property/conference/model.d.ts | 5 - .../src/api/property/conference/types.ts | 406 ++++++++++++++++++ .../src/api/property/deviceType/model.d.ts | 5 - .../src/api/property/deviceType/types.ts | 91 ++++ .../src/api/property/e8Config/model.d.ts | 17 +- .../src/api/property/e8Config/types.ts | 86 ++++ .../src/api/property/factory/model.d.ts | 10 - .../src/api/property/factory/types.ts | 71 +++ apps/web-antd/src/api/property/floor/index.ts | 18 +- .../src/api/property/floor/model.d.ts | 49 ++- apps/web-antd/src/api/property/floor/types.ts | 101 +++++ .../src/api/property/roomBooking/model.d.ts | 55 +-- .../src/api/property/roomBooking/types.ts | 406 ++++++++++++++++++ .../api/property/visitorManagement/model.d.ts | 15 - .../api/property/visitorManagement/types.ts | 146 +++++++ .../src/views/property/accessControl/data.ts | 61 ++- .../src/views/property/building/data.ts | 36 +- .../views/property/ceremonialServe/data.ts | 97 ++--- .../views/property/ceremonialServe/index.vue | 4 +- .../ceremonialserveRoombooking/data.ts | 22 +- .../ceremonialserveRoombooking/index.vue | 4 +- .../src/views/property/cityArea/data.ts | 42 +- .../src/views/property/community/data.ts | 32 +- .../src/views/property/conference/data.ts | 80 +++- .../src/views/property/deviceType/data.ts | 4 - .../src/views/property/e8Config/data.ts | 16 +- .../src/views/property/factory/data.ts | 10 - .../web-antd/src/views/property/floor/data.ts | 57 ++- .../src/views/property/floor/index.vue | 4 +- .../src/views/property/roomBooking/data.ts | 113 ++--- .../views/property/visitorManagement/data.ts | 26 -- 46 files changed, 3048 insertions(+), 545 deletions(-) create mode 100644 apps/web-antd/src/api/property/accessControl/types.ts create mode 100644 apps/web-antd/src/api/property/building/types.ts create mode 100644 apps/web-antd/src/api/property/ceremonialServe/types.ts create mode 100644 apps/web-antd/src/api/property/ceremonialserveRoombooking/types.ts create mode 100644 apps/web-antd/src/api/property/cityArea/types.ts create mode 100644 apps/web-antd/src/api/property/community/types.ts create mode 100644 apps/web-antd/src/api/property/conference/types.ts create mode 100644 apps/web-antd/src/api/property/deviceType/types.ts create mode 100644 apps/web-antd/src/api/property/e8Config/types.ts create mode 100644 apps/web-antd/src/api/property/factory/types.ts create mode 100644 apps/web-antd/src/api/property/floor/types.ts create mode 100644 apps/web-antd/src/api/property/roomBooking/types.ts create mode 100644 apps/web-antd/src/api/property/visitorManagement/types.ts diff --git a/apps/web-antd/.env b/apps/web-antd/.env index 7227f14a..ef3aba9a 100644 --- a/apps/web-antd/.env +++ b/apps/web-antd/.env @@ -1,5 +1,5 @@ # 应用标题 -VITE_APP_TITLE=Plus Admin +VITE_APP_TITLE=Smart Parks # 应用命名空间,用于缓存、store等功能的前缀,确保隔离 VITE_APP_NAMESPACE=vben-web-antd diff --git a/apps/web-antd/src/api/property/accessControl/model.d.ts b/apps/web-antd/src/api/property/accessControl/model.d.ts index 3b095cfd..a8f8deda 100644 --- a/apps/web-antd/src/api/property/accessControl/model.d.ts +++ b/apps/web-antd/src/api/property/accessControl/model.d.ts @@ -1,6 +1,11 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface AccessControlVO { + /** + * 主键 + */ + id: string | number; + /** * 门禁设备编码 */ @@ -27,7 +32,7 @@ export interface AccessControlVO { accessIp: string; /** - * 设备端口 + * 端口 */ accessPort: number; @@ -37,7 +42,7 @@ export interface AccessControlVO { accssType: number; /** - * 工程编号 + * 工厂编码 */ factoryCode: string; @@ -66,9 +71,19 @@ export interface AccessControlVO { */ dataState: number; + /** + * 搜索值 + */ + searchValue: string; + } export interface AccessControlForm extends BaseEntity { + /** + * 主键 + */ + id?: string | number; + /** * 门禁设备编码 */ @@ -95,7 +110,7 @@ export interface AccessControlForm extends BaseEntity { accessIp?: string; /** - * 设备端口 + * 端口 */ accessPort?: number; @@ -105,7 +120,7 @@ export interface AccessControlForm extends BaseEntity { accssType?: number; /** - * 工程编号 + * 工厂编码 */ factoryCode?: string; @@ -134,6 +149,11 @@ export interface AccessControlForm extends BaseEntity { */ dataState?: number; + /** + * 搜索值 + */ + searchValue?: string; + } export interface AccessControlQuery extends PageQuery { @@ -163,7 +183,7 @@ export interface AccessControlQuery extends PageQuery { accessIp?: string; /** - * 设备端口 + * 端口 */ accessPort?: number; @@ -173,7 +193,7 @@ export interface AccessControlQuery extends PageQuery { accssType?: number; /** - * 工程编号 + * 工厂编码 */ factoryCode?: string; @@ -202,6 +222,11 @@ export interface AccessControlQuery extends PageQuery { */ dataState?: number; + /** + * 搜索值 + */ + searchValue?: string; + /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/accessControl/types.ts b/apps/web-antd/src/api/property/accessControl/types.ts new file mode 100644 index 00000000..7e72f84f --- /dev/null +++ b/apps/web-antd/src/api/property/accessControl/types.ts @@ -0,0 +1,271 @@ +export interface AccessControlVO { + /** + * id + */ + id: string | number; + + /** + * 门禁设备编码 + */ + accessCode: string; + + /** + * 门禁名称 + */ + accessName: string; + + /** + * 园区编码 + */ + communityCode: string; + + /** + * 建筑编码 + */ + buildingCode: string; + + /** + * 门禁设备ip + */ + accessIp: string; + + /** + * 设备端口 + */ + accessPort: number; + + /** + * 门禁设备类型 + */ + accssType: number; + + /** + * 工程编号 + */ + factoryCode: string; + + /** + * 控制卡类型:1-系统,2-E8 + */ + controlType: number; + + /** + * 控制卡类型编码 + */ + controlCode: string; + + /** + * 外部编码 + */ + outCode: string; + + /** + * 组织编码 + */ + orgCode: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState: number; + + /** + * 创建时间 + */ + createTime: string; + + /** + * 创建人 + */ + createEmpId: string | number; + + /** + * 修改时间 + */ + modifyTime: string; + +} + +export interface AccessControlForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 门禁设备编码 + */ + accessCode?: string; + + /** + * 门禁名称 + */ + accessName?: string; + + /** + * 园区编码 + */ + communityCode?: string; + + /** + * 建筑编码 + */ + buildingCode?: string; + + /** + * 门禁设备ip + */ + accessIp?: string; + + /** + * 设备端口 + */ + accessPort?: number; + + /** + * 门禁设备类型 + */ + accssType?: number; + + /** + * 工程编号 + */ + factoryCode?: string; + + /** + * 控制卡类型:1-系统,2-E8 + */ + controlType?: number; + + /** + * 控制卡类型编码 + */ + controlCode?: string; + + /** + * 外部编码 + */ + outCode?: string; + + /** + * 组织编码 + */ + orgCode?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createEmpId?: string | number; + + /** + * 修改时间 + */ + modifyTime?: string; + +} + +export interface AccessControlQuery extends PageQuery { + + /** + * id + */ + id?: string | number; + + /** + * 门禁设备编码 + */ + accessCode?: string; + + /** + * 门禁名称 + */ + accessName?: string; + + /** + * 园区编码 + */ + communityCode?: string; + + /** + * 建筑编码 + */ + buildingCode?: string; + + /** + * 门禁设备ip + */ + accessIp?: string; + + /** + * 设备端口 + */ + accessPort?: number; + + /** + * 门禁设备类型 + */ + accssType?: number; + + /** + * 工程编号 + */ + factoryCode?: string; + + /** + * 控制卡类型:1-系统,2-E8 + */ + controlType?: number; + + /** + * 控制卡类型编码 + */ + controlCode?: string; + + /** + * 外部编码 + */ + outCode?: string; + + /** + * 组织编码 + */ + orgCode?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createEmpId?: string | number; + + /** + * 修改时间 + */ + modifyTime?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/building/model.d.ts b/apps/web-antd/src/api/property/building/model.d.ts index 36360c0c..c1e72a70 100644 --- a/apps/web-antd/src/api/property/building/model.d.ts +++ b/apps/web-antd/src/api/property/building/model.d.ts @@ -116,11 +116,6 @@ export interface BuildingVO { */ orgCode: string; - /** - * 数据状态:1有效,0无效 - */ - dataState: number; - } export interface BuildingForm extends BaseEntity { @@ -239,11 +234,6 @@ export interface BuildingForm extends BaseEntity { */ orgCode?: string; - /** - * 数据状态:1有效,0无效 - */ - dataState?: number; - } export interface BuildingQuery extends PageQuery { @@ -307,11 +297,6 @@ export interface BuildingQuery extends PageQuery { */ cqbh?: string; - /** - * 组织编码 - */ - orgCode?: string; - /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/building/types.ts b/apps/web-antd/src/api/property/building/types.ts new file mode 100644 index 00000000..b5e36280 --- /dev/null +++ b/apps/web-antd/src/api/property/building/types.ts @@ -0,0 +1,306 @@ +export interface BuildingVO { + /** + * id + */ + id: string | number; + + /** + * 园区编码 + */ + communityCode: string; + + /** + * 建筑编码 + */ + buildingCode: string; + + /** + * 建筑名称 + */ + buildingName: string; + + /** + * 省 + */ + province: string; + + /** + * 市 + */ + city: string; + + /** + * 区 + */ + district: string; + + /** + * 地址 + */ + addr: string; + + /** + * 经度 + */ + lon: string; + + /** + * 维度 + */ + lat: string; + + /** + * 产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用) + */ + cqxz: number; + + /** + * 不动产编号 + */ + bdcbh: string; + + /** + * 产权编号 + */ + cqbh: string; + + /** + * 图地编号 + */ + tdbh: string; + + /** + * 建筑面积 + */ + jzmj: number; + + /** + * 产权面积 + */ + cqmj: number; + + /** + * 可租面积 + */ + kzmj: number; + + /** + * 自用面积 + */ + zymj: number; + + /** + * 配套面积 + */ + ptmj: number; + + /** + * 车位面积 + */ + cwmj: number; + + /** + * 标准层高 + */ + bzcg: number; + + /** + * 排序字段 + */ + order: number; + + /** + * 组织编码 + */ + orgCode: string; + +} + +export interface BuildingForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 园区编码 + */ + communityCode?: string; + + /** + * 建筑编码 + */ + buildingCode?: string; + + /** + * 建筑名称 + */ + buildingName?: string; + + /** + * 省 + */ + province?: string; + + /** + * 市 + */ + city?: string; + + /** + * 区 + */ + district?: string; + + /** + * 地址 + */ + addr?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + + /** + * 产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用) + */ + cqxz?: number; + + /** + * 不动产编号 + */ + bdcbh?: string; + + /** + * 产权编号 + */ + cqbh?: string; + + /** + * 图地编号 + */ + tdbh?: string; + + /** + * 建筑面积 + */ + jzmj?: number; + + /** + * 产权面积 + */ + cqmj?: number; + + /** + * 可租面积 + */ + kzmj?: number; + + /** + * 自用面积 + */ + zymj?: number; + + /** + * 配套面积 + */ + ptmj?: number; + + /** + * 车位面积 + */ + cwmj?: number; + + /** + * 标准层高 + */ + bzcg?: number; + + /** + * 排序字段 + */ + order?: number; + + /** + * 组织编码 + */ + orgCode?: string; + +} + +export interface BuildingQuery extends PageQuery { + + /** + * 园区编码 + */ + communityCode?: string; + + /** + * 建筑编码 + */ + buildingCode?: string; + + /** + * 建筑名称 + */ + buildingName?: string; + + /** + * 省 + */ + province?: string; + + /** + * 市 + */ + city?: string; + + /** + * 区 + */ + district?: string; + + /** + * 地址 + */ + addr?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + + /** + * 产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用) + */ + cqxz?: number; + + /** + * 不动产编号 + */ + bdcbh?: string; + + /** + * 产权编号 + */ + cqbh?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/ceremonialServe/index.ts b/apps/web-antd/src/api/property/ceremonialServe/index.ts index 078b90e4..b9bb0847 100644 --- a/apps/web-antd/src/api/property/ceremonialServe/index.ts +++ b/apps/web-antd/src/api/property/ceremonialServe/index.ts @@ -7,34 +7,34 @@ import { commonExport } from '#/api/helper'; import { requestClient } from '#/api/request'; /** -* 查询服务列表 +* 查询会议服务列表 * @param params -* @returns 服务列表 +* @returns 会议服务列表 */ export function ceremonialServeList(params?: CeremonialServeQuery) { return requestClient.get>('/property/ceremonialServe/list', { params }); } /** - * 导出服务列表 + * 导出会议服务列表 * @param params - * @returns 服务列表 + * @returns 会议服务列表 */ export function ceremonialServeExport(params?: CeremonialServeQuery) { return commonExport('/property/ceremonialServe/export', params ?? {}); } /** - * 查询服务详情 + * 查询会议服务详情 * @param id id - * @returns 服务详情 + * @returns 会议服务详情 */ export function ceremonialServeInfo(id: ID) { return requestClient.get(`/property/ceremonialServe/${id}`); } /** - * 新增服务 + * 新增会议服务 * @param data * @returns void */ @@ -43,7 +43,7 @@ export function ceremonialServeAdd(data: CeremonialServeForm) { } /** - * 更新服务 + * 更新会议服务 * @param data * @returns void */ @@ -52,7 +52,7 @@ export function ceremonialServeUpdate(data: CeremonialServeForm) { } /** - * 删除服务 + * 删除会议服务 * @param id id * @returns void */ diff --git a/apps/web-antd/src/api/property/ceremonialServe/model.d.ts b/apps/web-antd/src/api/property/ceremonialServe/model.d.ts index 85db8c56..c12a47db 100644 --- a/apps/web-antd/src/api/property/ceremonialServe/model.d.ts +++ b/apps/web-antd/src/api/property/ceremonialServe/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface CeremonialServeVO { - /** - * id - */ - id: string | number; - /** * 分类id */ @@ -36,21 +31,6 @@ export interface CeremonialServeVO { */ serveStatus: number; - /** - * 创建人id - */ - createById: string | number; - - /** - * 更新人id - */ - updateById: string | number; - - /** - * 确认人id - */ - confirmId: string | number; - /** * 服务开始时间 */ @@ -66,11 +46,6 @@ export interface CeremonialServeVO { */ servePrice: number; - /** - * 数据状态(模拟删除 0:删除 1:未删除) - */ - dataStauts: number; - /** * 产品图片 */ @@ -119,21 +94,6 @@ export interface CeremonialServeForm extends BaseEntity { */ serveStatus?: number; - /** - * 创建人id - */ - createById?: string | number; - - /** - * 更新人id - */ - updateById?: string | number; - - /** - * 确认人id - */ - confirmId?: string | number; - /** * 服务开始时间 */ @@ -149,11 +109,6 @@ export interface CeremonialServeForm extends BaseEntity { */ servePrice?: number; - /** - * 数据状态(模拟删除 0:删除 1:未删除) - */ - dataStauts?: number; - /** * 产品图片 */ @@ -197,21 +152,6 @@ export interface CeremonialServeQuery extends PageQuery { */ serveStatus?: number; - /** - * 创建人id - */ - createById?: string | number; - - /** - * 更新人id - */ - updateById?: string | number; - - /** - * 确认人id - */ - confirmId?: string | number; - /** * 服务开始时间 */ @@ -227,11 +167,6 @@ export interface CeremonialServeQuery extends PageQuery { */ servePrice?: number; - /** - * 数据状态(模拟删除 0:删除 1:未删除) - */ - dataStauts?: number; - /** * 产品图片 */ diff --git a/apps/web-antd/src/api/property/ceremonialServe/types.ts b/apps/web-antd/src/api/property/ceremonialServe/types.ts new file mode 100644 index 00000000..070ad169 --- /dev/null +++ b/apps/web-antd/src/api/property/ceremonialServe/types.ts @@ -0,0 +1,320 @@ +export interface CeremonialServeVO { + /** + * id + */ + id: string | number; + + /** + * 分类id + */ + classificationId: string | number; + + /** + * 预订id + */ + roomBookId: string | number; + + /** + * 服务数量 + */ + serveNum: number; + + /** + * 服务分类 + */ + serveType: number; + + /** + * 产品名称 + */ + serveName: string; + + /** + * 预订状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus: number; + + /** + * 创建时间 + */ + createTime: string; + + /** + * 创建人 + */ + createBy: string; + + /** + * 创建人id + */ + createById: string | number; + + /** + * 更新时间 + */ + updateTime: string; + + /** + * 更新人 + */ + updateBy: string; + + /** + * 更新人id + */ + updateById: string | number; + + /** + * 确认人id + */ + confirmId: string | number; + + /** + * 服务开始时间 + */ + beginTime: string; + + /** + * 服务结束时间 + */ + endTime: string; + + /** + * 服务总价格 + */ + servePrice: number; + + /** + * 数据状态(模拟删除 0:删除 1:未删除) + */ + dataStauts: number; + + /** + * 产品图片 + */ + serveImage: string; + + /** + * 产品图片Url + */ + serveImageUrl: string; + /** + * 排序 + */ + sort: number; + +} + +export interface CeremonialServeForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 分类id + */ + classificationId?: string | number; + + /** + * 预订id + */ + roomBookId?: string | number; + + /** + * 服务数量 + */ + serveNum?: number; + + /** + * 服务分类 + */ + serveType?: number; + + /** + * 产品名称 + */ + serveName?: string; + + /** + * 预订状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 确认人id + */ + confirmId?: string | number; + + /** + * 服务开始时间 + */ + beginTime?: string; + + /** + * 服务结束时间 + */ + endTime?: string; + + /** + * 服务总价格 + */ + servePrice?: number; + + /** + * 数据状态(模拟删除 0:删除 1:未删除) + */ + dataStauts?: number; + + /** + * 产品图片 + */ + serveImage?: string; + + /** + * 排序 + */ + sort?: number; + +} + +export interface CeremonialServeQuery extends PageQuery { + + /** + * id + */ + id?: string | number; + + /** + * 分类id + */ + classificationId?: string | number; + + /** + * 预订id + */ + roomBookId?: string | number; + + /** + * 服务数量 + */ + serveNum?: number; + + /** + * 服务分类 + */ + serveType?: number; + + /** + * 产品名称 + */ + serveName?: string; + + /** + * 预订状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 确认人id + */ + confirmId?: string | number; + + /** + * 服务开始时间 + */ + beginTime?: string; + + /** + * 服务结束时间 + */ + endTime?: string; + + /** + * 服务总价格 + */ + servePrice?: number; + + /** + * 数据状态(模拟删除 0:删除 1:未删除) + */ + dataStauts?: number; + + /** + * 产品图片 + */ + serveImage?: string; + + /** + * 排序 + */ + sort?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/ceremonialserveRoombooking/index.ts b/apps/web-antd/src/api/property/ceremonialserveRoombooking/index.ts index 5e4ebf90..a7fb3ac4 100644 --- a/apps/web-antd/src/api/property/ceremonialserveRoombooking/index.ts +++ b/apps/web-antd/src/api/property/ceremonialserveRoombooking/index.ts @@ -7,34 +7,34 @@ import { commonExport } from '#/api/helper'; import { requestClient } from '#/api/request'; /** -* 查询服务订阅列表 +* 查询会议预定列表 * @param params -* @returns 服务订阅列表 +* @returns 会议预定列表 */ export function ceremonialserveRoombookingList(params?: CeremonialserveRoombookingQuery) { return requestClient.get>('/property/ceremonialserveRoombooking/list', { params }); } /** - * 导出服务订阅列表 + * 导出会议预定列表 * @param params - * @returns 服务订阅列表 + * @returns 会议预定列表 */ export function ceremonialserveRoombookingExport(params?: CeremonialserveRoombookingQuery) { return commonExport('/property/ceremonialserveRoombooking/export', params ?? {}); } /** - * 查询服务订阅详情 + * 查询会议预定详情 * @param id id - * @returns 服务订阅详情 + * @returns 会议预定详情 */ export function ceremonialserveRoombookingInfo(id: ID) { return requestClient.get(`/property/ceremonialserveRoombooking/${id}`); } /** - * 新增服务订阅 + * 新增会议预定 * @param data * @returns void */ @@ -43,7 +43,7 @@ export function ceremonialserveRoombookingAdd(data: CeremonialserveRoombookingFo } /** - * 更新服务订阅 + * 更新会议预定 * @param data * @returns void */ @@ -52,7 +52,7 @@ export function ceremonialserveRoombookingUpdate(data: CeremonialserveRoombookin } /** - * 删除服务订阅 + * 删除会议预定 * @param id id * @returns void */ diff --git a/apps/web-antd/src/api/property/ceremonialserveRoombooking/model.d.ts b/apps/web-antd/src/api/property/ceremonialserveRoombooking/model.d.ts index 43382018..479b1570 100644 --- a/apps/web-antd/src/api/property/ceremonialserveRoombooking/model.d.ts +++ b/apps/web-antd/src/api/property/ceremonialserveRoombooking/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface CeremonialserveRoombookingVO { - /** - * id - */ - id: string | number; - /** * 服务id */ @@ -21,6 +16,11 @@ export interface CeremonialserveRoombookingVO { */ totalPrice: number; + /** + * 搜索值 + */ + searchValue: string; + } export interface CeremonialserveRoombookingForm extends BaseEntity { @@ -44,6 +44,11 @@ export interface CeremonialserveRoombookingForm extends BaseEntity { */ totalPrice?: number; + /** + * 搜索值 + */ + searchValue?: string; + } export interface CeremonialserveRoombookingQuery extends PageQuery { @@ -62,6 +67,11 @@ export interface CeremonialserveRoombookingQuery extends PageQuery { */ totalPrice?: number; + /** + * 搜索值 + */ + searchValue?: string; + /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/ceremonialserveRoombooking/types.ts b/apps/web-antd/src/api/property/ceremonialserveRoombooking/types.ts new file mode 100644 index 00000000..930c3962 --- /dev/null +++ b/apps/web-antd/src/api/property/ceremonialserveRoombooking/types.ts @@ -0,0 +1,76 @@ +export interface CeremonialserveRoombookingVO { + /** + * id + */ + id: string | number; + + /** + * 服务id + */ + ceremonialServeId: string | number; + + /** + * 预订id + */ + roomBookingId: string | number; + + /** + * 服务和预订总价格 + */ + totalPrice: number; + +} + +export interface CeremonialserveRoombookingForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 服务id + */ + ceremonialServeId?: string | number; + + /** + * 预订id + */ + roomBookingId?: string | number; + + /** + * 服务和预订总价格 + */ + totalPrice?: number; + +} + +export interface CeremonialserveRoombookingQuery extends PageQuery { + + /** + * id + */ + id?: string | number; + + /** + * 服务id + */ + ceremonialServeId?: string | number; + + /** + * 预订id + */ + roomBookingId?: string | number; + + /** + * 服务和预订总价格 + */ + totalPrice?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/cityArea/model.d.ts b/apps/web-antd/src/api/property/cityArea/model.d.ts index 60d4eb64..571567ab 100644 --- a/apps/web-antd/src/api/property/cityArea/model.d.ts +++ b/apps/web-antd/src/api/property/cityArea/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface CityAreaVO { - /** - * 主键ID - */ - id: string | number; - /** * 城市编码 */ @@ -41,11 +36,6 @@ export interface CityAreaVO { */ lat: string; - /** - * 数据状态:1有效,0无效 - */ - dataState: number; - } export interface CityAreaForm extends BaseEntity { @@ -89,11 +79,6 @@ export interface CityAreaForm extends BaseEntity { */ lat?: string; - /** - * 数据状态:1有效,0无效 - */ - dataState?: number; - } export interface CityAreaQuery extends PageQuery { @@ -132,11 +117,6 @@ export interface CityAreaQuery extends PageQuery { */ lat?: string; - /** - * 数据状态:1有效,0无效 - */ - dataState?: number; - /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/cityArea/types.ts b/apps/web-antd/src/api/property/cityArea/types.ts new file mode 100644 index 00000000..3a5414c6 --- /dev/null +++ b/apps/web-antd/src/api/property/cityArea/types.ts @@ -0,0 +1,126 @@ +export interface CityAreaVO { + /** + * 城市编码 + */ + areaCode: string; + + /** + * 城市名称 + */ + areaName: string; + + /** + * 101 省级 202 市州 303 区县 + */ + areaLevel: string; + + /** + * 父级城市编码 + */ + parentAreaCode: string; + + /** + * 父级城市名称 + */ + parentAreaName: string; + + /** + * 经度 + */ + lon: string; + + /** + * 维度 + */ + lat: string; + +} + +export interface CityAreaForm extends BaseEntity { + /** + * 主键ID + */ + id?: string | number; + + /** + * 城市编码 + */ + areaCode?: string; + + /** + * 城市名称 + */ + areaName?: string; + + /** + * 101 省级 202 市州 303 区县 + */ + areaLevel?: string; + + /** + * 父级城市编码 + */ + parentAreaCode?: string; + + /** + * 父级城市名称 + */ + parentAreaName?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + +} + +export interface CityAreaQuery extends PageQuery { + + /** + * 城市编码 + */ + areaCode?: string; + + /** + * 城市名称 + */ + areaName?: string; + + /** + * 101 省级 202 市州 303 区县 + */ + areaLevel?: string; + + /** + * 父级城市编码 + */ + parentAreaCode?: string; + + /** + * 父级城市名称 + */ + parentAreaName?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/community/model.d.ts b/apps/web-antd/src/api/property/community/model.d.ts index aae0466f..195bfae3 100644 --- a/apps/web-antd/src/api/property/community/model.d.ts +++ b/apps/web-antd/src/api/property/community/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface CommunityVO { - /** - * 主键id - */ - id: string | number; - /** * 社区名称 */ @@ -61,11 +56,6 @@ export interface CommunityVO { */ orgCode: string; - /** - * 数据状态:1有效,0无效 - */ - dataState: number; - } export interface CommunityForm extends BaseEntity { @@ -129,11 +119,6 @@ export interface CommunityForm extends BaseEntity { */ orgCode?: string; - /** - * 数据状态:1有效,0无效 - */ - dataState?: number; - } export interface CommunityQuery extends PageQuery { diff --git a/apps/web-antd/src/api/property/community/types.ts b/apps/web-antd/src/api/property/community/types.ts new file mode 100644 index 00000000..9640f0ae --- /dev/null +++ b/apps/web-antd/src/api/property/community/types.ts @@ -0,0 +1,195 @@ +export interface CommunityVO { + /** + * 社区名称 + */ + communityName: string; + + /** + * 社区编码 + */ + communityCode: string; + + /** + * 社区类型 1:园区,2:小区 + */ + communityType: number; + + /** + * 省 + */ + province: string; + + /** + * 市 + */ + city: string; + + /** + * 区 + */ + district: string; + + /** + * 地址 + */ + addr: string; + + /** + * 经度 + */ + lon: string; + + /** + * 维度 + */ + lat: string; + + /** + * 小图图片 + */ + img: string; + + /** + * 小图图片Url + */ + imgUrl: string; + /** + * 组织编码 + */ + orgCode: string; + +} + +export interface CommunityForm extends BaseEntity { + /** + * 主键id + */ + id?: string | number; + + /** + * 社区名称 + */ + communityName?: string; + + /** + * 社区编码 + */ + communityCode?: string; + + /** + * 社区类型 1:园区,2:小区 + */ + communityType?: number; + + /** + * 省 + */ + province?: string; + + /** + * 市 + */ + city?: string; + + /** + * 区 + */ + district?: string; + + /** + * 地址 + */ + addr?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + + /** + * 小图图片 + */ + img?: string; + + /** + * 组织编码 + */ + orgCode?: string; + +} + +export interface CommunityQuery extends PageQuery { + + /** + * 社区名称 + */ + communityName?: string; + + /** + * 社区编码 + */ + communityCode?: string; + + /** + * 社区类型 1:园区,2:小区 + */ + communityType?: number; + + /** + * 省 + */ + province?: string; + + /** + * 市 + */ + city?: string; + + /** + * 区 + */ + district?: string; + + /** + * 地址 + */ + addr?: string; + + /** + * 经度 + */ + lon?: string; + + /** + * 维度 + */ + lat?: string; + + /** + * 小图图片 + */ + img?: string; + + /** + * 组织编码 + */ + orgCode?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/conference/model.d.ts b/apps/web-antd/src/api/property/conference/model.d.ts index c51af5c6..da215ab7 100644 --- a/apps/web-antd/src/api/property/conference/model.d.ts +++ b/apps/web-antd/src/api/property/conference/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface ConferenceVO { - /** - * id - */ - id: string | number; - /** * 会议室名称 */ diff --git a/apps/web-antd/src/api/property/conference/types.ts b/apps/web-antd/src/api/property/conference/types.ts new file mode 100644 index 00000000..42658dac --- /dev/null +++ b/apps/web-antd/src/api/property/conference/types.ts @@ -0,0 +1,406 @@ +export interface ConferenceVO { + /** + * id + */ + id: string | number; + + /** + * 会议室名称 + */ + roomName: string; + + /** + * 会议室编号 + */ + roomNo: number; + + /** + * 会议室位置 + */ + roomLocation: string; + + /** + * 会议室面积 + */ + roomArea: string; + + /** + * 会议室类型 + */ + roomType: string; + + /** + * 会议室容纳人数 + */ + roomNumber: number; + + /** + * 创建时间 + */ + createTime: string; + + /** + * 创建人 + */ + createBy: string; + + /** + * 创建人id + */ + createById: string | number; + + /** + * 更新时间 + */ + updateTime: string; + + /** + * 更新人 + */ + updateBy: string; + + /** + * 更新人id + */ + updateById: string | number; + + /** + * 会议室配套设施 + */ + roomFacilities: string; + + /** + * 会议室价格类型(0:免费,1付费,2:面议) + */ + feeType: number; + + /** + * 费用金额 + */ + feePrice: number; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus: number; + + /** + * 负责人 + */ + responsiblePerson: string; + + /** + * 联系电话 + */ + contactNumber: number; + + /** + * 会议室照片 + */ + pictures: string; + + /** + * 会议室描述 + */ + description: string; + + /** + * 是否需要审核(0:需要审核,1:不需要审核) + */ + review: number; + + /** + * 启用状态(0:禁用,1:启用) + */ + enabledStatus: number; + + /** + * 开放星期(1:星期一,2:星期二) + */ + openingWeek: number; + + /** + * 开放开始时间 + */ + openingBeginTime: string; + + /** + * 开放结束时间 + */ + openingEndTime: string; + +} + +export interface ConferenceForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 会议室名称 + */ + roomName?: string; + + /** + * 会议室编号 + */ + roomNo?: number; + + /** + * 会议室位置 + */ + roomLocation?: string; + + /** + * 会议室面积 + */ + roomArea?: string; + + /** + * 会议室类型 + */ + roomType?: string; + + /** + * 会议室容纳人数 + */ + roomNumber?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 会议室配套设施 + */ + roomFacilities?: string; + + /** + * 会议室价格类型(0:免费,1付费,2:面议) + */ + feeType?: number; + + /** + * 费用金额 + */ + feePrice?: number; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus?: number; + + /** + * 负责人 + */ + responsiblePerson?: string; + + /** + * 联系电话 + */ + contactNumber?: number; + + /** + * 会议室照片 + */ + pictures?: string; + + /** + * 会议室描述 + */ + description?: string; + + /** + * 是否需要审核(0:需要审核,1:不需要审核) + */ + review?: number; + + /** + * 启用状态(0:禁用,1:启用) + */ + enabledStatus?: number; + + /** + * 开放星期(1:星期一,2:星期二) + */ + openingWeek?: number; + + /** + * 开放开始时间 + */ + openingBeginTime?: string; + + /** + * 开放结束时间 + */ + openingEndTime?: string; + +} + +export interface ConferenceQuery extends PageQuery { + + /** + * id + */ + id?: string | number; + + /** + * 会议室名称 + */ + roomName?: string; + + /** + * 会议室编号 + */ + roomNo?: number; + + /** + * 会议室位置 + */ + roomLocation?: string; + + /** + * 会议室面积 + */ + roomArea?: string; + + /** + * 会议室类型 + */ + roomType?: string; + + /** + * 会议室容纳人数 + */ + roomNumber?: number; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 会议室配套设施 + */ + roomFacilities?: string; + + /** + * 会议室价格类型(0:免费,1付费,2:面议) + */ + feeType?: number; + + /** + * 费用金额 + */ + feePrice?: number; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus?: number; + + /** + * 负责人 + */ + responsiblePerson?: string; + + /** + * 联系电话 + */ + contactNumber?: number; + + /** + * 会议室照片 + */ + pictures?: string; + + /** + * 会议室描述 + */ + description?: string; + + /** + * 是否需要审核(0:需要审核,1:不需要审核) + */ + review?: number; + + /** + * 启用状态(0:禁用,1:启用) + */ + enabledStatus?: number; + + /** + * 开放星期(1:星期一,2:星期二) + */ + openingWeek?: number; + + /** + * 开放开始时间 + */ + openingBeginTime?: string; + + /** + * 开放结束时间 + */ + openingEndTime?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/deviceType/model.d.ts b/apps/web-antd/src/api/property/deviceType/model.d.ts index 4ed63bf2..fab70a4c 100644 --- a/apps/web-antd/src/api/property/deviceType/model.d.ts +++ b/apps/web-antd/src/api/property/deviceType/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface DeviceTypeVO { - /** - * 数据库id - */ - id: string | number; - /** * 设备类型编码 */ diff --git a/apps/web-antd/src/api/property/deviceType/types.ts b/apps/web-antd/src/api/property/deviceType/types.ts new file mode 100644 index 00000000..7f07e9b9 --- /dev/null +++ b/apps/web-antd/src/api/property/deviceType/types.ts @@ -0,0 +1,91 @@ +export interface DeviceTypeVO { + /** + * 设备类型编码 + */ + dvNo: string; + + /** + * 设备类型名称 + */ + dvName: string; + + /** + * 设备厂商名称 + */ + factoryNo: string; + + /** + * 备注 + */ + remark: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState: number; + +} + +export interface DeviceTypeForm extends BaseEntity { + /** + * 数据库id + */ + id?: string | number; + + /** + * 设备类型编码 + */ + dvNo?: string; + + /** + * 设备类型名称 + */ + dvName?: string; + + /** + * 设备厂商名称 + */ + factoryNo?: string; + + /** + * 备注 + */ + remark?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + +} + +export interface DeviceTypeQuery extends PageQuery { + + /** + * 设备类型编码 + */ + dvNo?: string; + + /** + * 设备类型名称 + */ + dvName?: string; + + /** + * 设备厂商名称 + */ + factoryNo?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/e8Config/model.d.ts b/apps/web-antd/src/api/property/e8Config/model.d.ts index daa5d772..cb7f7cf2 100644 --- a/apps/web-antd/src/api/property/e8Config/model.d.ts +++ b/apps/web-antd/src/api/property/e8Config/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface E8ConfigVO { - /** - * - */ - id: string | number; - /** * E8 名称 */ @@ -26,16 +21,11 @@ export interface E8ConfigVO { */ orgCode: string; - /** - * 数据状态:1有效,0无效 - */ - dataState: number; - } export interface E8ConfigForm extends BaseEntity { /** - * + * ID */ id?: string | number; @@ -59,11 +49,6 @@ export interface E8ConfigForm extends BaseEntity { */ orgCode?: string; - /** - * 数据状态:1有效,0无效 - */ - dataState?: number; - } export interface E8ConfigQuery extends PageQuery { diff --git a/apps/web-antd/src/api/property/e8Config/types.ts b/apps/web-antd/src/api/property/e8Config/types.ts new file mode 100644 index 00000000..feefcc6d --- /dev/null +++ b/apps/web-antd/src/api/property/e8Config/types.ts @@ -0,0 +1,86 @@ +export interface E8ConfigVO { + /** + * E8 名称 + */ + e8Name: string; + + /** + * E8服务地址 + */ + e8ServerUrl: string; + + /** + * E8服务提供的secret + */ + e8Secret: string; + + /** + * 组织编码 + */ + orgCode: string; + +} + +export interface E8ConfigForm extends BaseEntity { + /** + * ID + */ + id?: string | number; + + /** + * E8 名称 + */ + e8Name?: string; + + /** + * E8服务地址 + */ + e8ServerUrl?: string; + + /** + * E8服务提供的secret + */ + e8Secret?: string; + + /** + * 组织编码 + */ + orgCode?: string; + +} + +export interface E8ConfigQuery extends PageQuery { + + /** + * E8 名称 + */ + e8Name?: string; + + /** + * E8服务地址 + */ + e8ServerUrl?: string; + + /** + * E8服务提供的secret + */ + e8Secret?: string; + + /** + * 组织编码 + */ + orgCode?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/factory/model.d.ts b/apps/web-antd/src/api/property/factory/model.d.ts index 03db3112..603ee662 100644 --- a/apps/web-antd/src/api/property/factory/model.d.ts +++ b/apps/web-antd/src/api/property/factory/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface FactoryVO { - /** - * 数据库id - */ - id: string | number; - /** * 厂商编码 */ @@ -34,11 +29,6 @@ export interface FactoryForm extends BaseEntity { */ id?: string | number; - /** - * 厂商编码 - */ - factoryNo?: string; - /** * 设备厂商名称 */ diff --git a/apps/web-antd/src/api/property/factory/types.ts b/apps/web-antd/src/api/property/factory/types.ts new file mode 100644 index 00000000..08ccd2ac --- /dev/null +++ b/apps/web-antd/src/api/property/factory/types.ts @@ -0,0 +1,71 @@ +export interface FactoryVO { + /** + * 厂商编码 + */ + factoryNo: string; + + /** + * 设备厂商名称 + */ + factoryName: string; + + /** + * 备注 + */ + remark: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState: number; + +} + +export interface FactoryForm extends BaseEntity { + /** + * 数据库id + */ + id?: string | number; + + /** + * 设备厂商名称 + */ + factoryName?: string; + + /** + * 备注 + */ + remark?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + +} + +export interface FactoryQuery extends PageQuery { + + /** + * 厂商编码 + */ + factoryNo?: string; + + /** + * 设备厂商名称 + */ + factoryName?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/floor/index.ts b/apps/web-antd/src/api/property/floor/index.ts index 8b154ce2..ecdb3f37 100644 --- a/apps/web-antd/src/api/property/floor/index.ts +++ b/apps/web-antd/src/api/property/floor/index.ts @@ -7,34 +7,34 @@ import { commonExport } from '#/api/helper'; import { requestClient } from '#/api/request'; /** -* 查询楼层列表 +* 查询楼层管理列表 * @param params -* @returns 楼层列表 +* @returns 楼层管理列表 */ export function floorList(params?: FloorQuery) { return requestClient.get>('/property/floor/list', { params }); } /** - * 导出楼层列表 + * 导出楼层管理列表 * @param params - * @returns 楼层列表 + * @returns 楼层管理列表 */ export function floorExport(params?: FloorQuery) { return commonExport('/property/floor/export', params ?? {}); } /** - * 查询楼层详情 + * 查询楼层管理详情 * @param id id - * @returns 楼层详情 + * @returns 楼层管理详情 */ export function floorInfo(id: ID) { return requestClient.get(`/property/floor/${id}`); } /** - * 新增楼层 + * 新增楼层管理 * @param data * @returns void */ @@ -43,7 +43,7 @@ export function floorAdd(data: FloorForm) { } /** - * 更新楼层 + * 更新楼层管理 * @param data * @returns void */ @@ -52,7 +52,7 @@ export function floorUpdate(data: FloorForm) { } /** - * 删除楼层 + * 删除楼层管理 * @param id id * @returns void */ diff --git a/apps/web-antd/src/api/property/floor/model.d.ts b/apps/web-antd/src/api/property/floor/model.d.ts index cd9f38c6..370e6895 100644 --- a/apps/web-antd/src/api/property/floor/model.d.ts +++ b/apps/web-antd/src/api/property/floor/model.d.ts @@ -2,7 +2,7 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface FloorVO { /** - * 数据库id + * */ id: string | number; @@ -36,11 +36,26 @@ export interface FloorVO { */ dataState: number; + /** + * 创建人 + */ + createEmpId: string | number; + + /** + * 修改时间 + */ + modifyTime: string; + + /** + * 搜索值 + */ + searchValue: string; + } export interface FloorForm extends BaseEntity { /** - * 数据库id + * */ id?: string | number; @@ -74,6 +89,21 @@ export interface FloorForm extends BaseEntity { */ dataState?: number; + /** + * 创建人 + */ + createEmpId?: string | number; + + /** + * 修改时间 + */ + modifyTime?: string; + + /** + * 搜索值 + */ + searchValue?: string; + } export interface FloorQuery extends PageQuery { @@ -107,6 +137,21 @@ export interface FloorQuery extends PageQuery { */ dataState?: number; + /** + * 创建人 + */ + createEmpId?: string | number; + + /** + * 修改时间 + */ + modifyTime?: string; + + /** + * 搜索值 + */ + searchValue?: string; + /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/floor/types.ts b/apps/web-antd/src/api/property/floor/types.ts new file mode 100644 index 00000000..0c949fde --- /dev/null +++ b/apps/web-antd/src/api/property/floor/types.ts @@ -0,0 +1,101 @@ +export interface FloorVO { + /** + * 社区编码 + */ + communityCode: string; + + /** + * 建筑名称 + */ + buildingCode: string; + + /** + * 楼层编码 + */ + floorCode: number; + + /** + * 楼层数名称 + */ + floorName: string; + + /** + * 组织编码 + */ + orgCode: string; + +} + +export interface FloorForm extends BaseEntity { + /** + * 数据库id + */ + id?: string | number; + + /** + * 社区编码 + */ + communityCode?: string; + + /** + * 建筑名称 + */ + buildingCode?: string; + + /** + * 楼层编码 + */ + floorCode?: number; + + /** + * 楼层数名称 + */ + floorName?: string; + + /** + * 组织编码 + */ + orgCode?: string; + +} + +export interface FloorQuery extends PageQuery { + + /** + * 社区编码 + */ + communityCode?: string; + + /** + * 建筑名称 + */ + buildingCode?: string; + + /** + * 楼层编码 + */ + floorCode?: number; + + /** + * 楼层数名称 + */ + floorName?: string; + + /** + * 组织编码 + */ + orgCode?: string; + + /** + * 数据状态:1有效,0无效 + */ + dataState?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/roomBooking/model.d.ts b/apps/web-antd/src/api/property/roomBooking/model.d.ts index 67794931..cf146008 100644 --- a/apps/web-antd/src/api/property/roomBooking/model.d.ts +++ b/apps/web-antd/src/api/property/roomBooking/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface RoomBookingVO { - /** - * id - */ - id: string | number; - /** * 会议室id */ @@ -71,16 +66,6 @@ export interface RoomBookingVO { */ checkInEndTime: string; - /** - * 审批人 - */ - approver: string; - - /** - * 审批时间 - */ - approverTime: string; - /** * 评价 */ @@ -96,11 +81,6 @@ export interface RoomBookingVO { */ addServices: number; - /** - * 数据状态(模拟删除 0:未删除 1:删除) - */ - dataStatus: number; - } export interface RoomBookingForm extends BaseEntity { @@ -174,16 +154,6 @@ export interface RoomBookingForm extends BaseEntity { */ checkInEndTime?: string; - /** - * 审批人 - */ - approver?: string; - - /** - * 审批时间 - */ - approverTime?: string; - /** * 评价 */ @@ -199,11 +169,6 @@ export interface RoomBookingForm extends BaseEntity { */ addServices?: number; - /** - * 数据状态(模拟删除 0:未删除 1:删除) - */ - dataStatus?: number; - } export interface RoomBookingQuery extends PageQuery { @@ -272,31 +237,21 @@ export interface RoomBookingQuery extends PageQuery { */ checkInEndTime?: string; - /** - * 审批人 - */ - approver?: string; - - /** - * 审批时间 - */ - approverTime?: string; - /** * 评价 */ evaluate?: string; + /** + * 备注 + */ + remark?: string; + /** * 是否需要增值服务(0:需要,1:不需要) */ addServices?: number; - /** - * 数据状态(模拟删除 0:未删除 1:删除) - */ - dataStatus?: number; - /** * 日期范围参数 */ diff --git a/apps/web-antd/src/api/property/roomBooking/types.ts b/apps/web-antd/src/api/property/roomBooking/types.ts new file mode 100644 index 00000000..97d66289 --- /dev/null +++ b/apps/web-antd/src/api/property/roomBooking/types.ts @@ -0,0 +1,406 @@ +export interface RoomBookingVO { + /** + * id + */ + id: string | number; + + /** + * 会议室id + */ + tbConferenceId: string | number; + + /** + * 预约状态(0:未预定 1:使用中 2:已预订) + */ + bookingStatus: number; + + /** + * 审核状态(0:未审核 1:通过 2:未通过) + */ + reviewStatus: number; + + /** + * 会议预订人 + */ + bookingName: string; + + /** + * 使用单位 + */ + userUnit: string; + + /** + * 会议主题 + */ + conferenceTheme: string; + + /** + * 预约日期 + */ + appointmentDate: string; + + /** + * 预约开始时段 + */ + appointmentBeginTime: string; + + /** + * 预约结束时段 + */ + appointmentEndTime: string; + + /** + * 参会人员 + */ + attendeesName: string; + + /** + * 参会人数 + */ + approverCount: number; + + /** + * 签到开始时间 + */ + checkInStartTime: string; + + /** + * 签到结束时间 + */ + checkInEndTime: string; + + /** + * 审批人 + */ + approver: string; + + /** + * 审批时间 + */ + approverTime: string; + + /** + * 评价 + */ + evaluate: string; + + /** + * 备注 + */ + remark: string; + + /** + * 是否需要增值服务(0:需要,1:不需要) + */ + addServices: number; + + /** + * 创建人id + */ + createById: string | number; + + /** + * 创建人 + */ + createBy: string; + + /** + * 创建时间 + */ + createTime: string; + + /** + * 更新人id + */ + updateById: string | number; + + /** + * 更新人 + */ + updateBy: string; + + /** + * 更新时间 + */ + updateTime: string; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus: number; + +} + +export interface RoomBookingForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 会议室id + */ + tbConferenceId?: string | number; + + /** + * 预约状态(0:未预定 1:使用中 2:已预订) + */ + bookingStatus?: number; + + /** + * 审核状态(0:未审核 1:通过 2:未通过) + */ + reviewStatus?: number; + + /** + * 会议预订人 + */ + bookingName?: string; + + /** + * 使用单位 + */ + userUnit?: string; + + /** + * 会议主题 + */ + conferenceTheme?: string; + + /** + * 预约日期 + */ + appointmentDate?: string; + + /** + * 预约开始时段 + */ + appointmentBeginTime?: string; + + /** + * 预约结束时段 + */ + appointmentEndTime?: string; + + /** + * 参会人员 + */ + attendeesName?: string; + + /** + * 参会人数 + */ + approverCount?: number; + + /** + * 签到开始时间 + */ + checkInStartTime?: string; + + /** + * 签到结束时间 + */ + checkInEndTime?: string; + + /** + * 审批人 + */ + approver?: string; + + /** + * 审批时间 + */ + approverTime?: string; + + /** + * 评价 + */ + evaluate?: string; + + /** + * 备注 + */ + remark?: string; + + /** + * 是否需要增值服务(0:需要,1:不需要) + */ + addServices?: number; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus?: number; + +} + +export interface RoomBookingQuery extends PageQuery { + + /** + * id + */ + id?: string | number; + + /** + * 会议室id + */ + tbConferenceId?: string | number; + + /** + * 预约状态(0:未预定 1:使用中 2:已预订) + */ + bookingStatus?: number; + + /** + * 审核状态(0:未审核 1:通过 2:未通过) + */ + reviewStatus?: number; + + /** + * 会议预订人 + */ + bookingName?: string; + + /** + * 使用单位 + */ + userUnit?: string; + + /** + * 会议主题 + */ + conferenceTheme?: string; + + /** + * 预约日期 + */ + appointmentDate?: string; + + /** + * 预约开始时段 + */ + appointmentBeginTime?: string; + + /** + * 预约结束时段 + */ + appointmentEndTime?: string; + + /** + * 参会人员 + */ + attendeesName?: string; + + /** + * 参会人数 + */ + approverCount?: number; + + /** + * 签到开始时间 + */ + checkInStartTime?: string; + + /** + * 签到结束时间 + */ + checkInEndTime?: string; + + /** + * 审批人 + */ + approver?: string; + + /** + * 审批时间 + */ + approverTime?: string; + + /** + * 评价 + */ + evaluate?: string; + + /** + * 备注 + */ + remark?: string; + + /** + * 是否需要增值服务(0:需要,1:不需要) + */ + addServices?: number; + + /** + * 创建人id + */ + createById?: string | number; + + /** + * 创建人 + */ + createBy?: string; + + /** + * 创建时间 + */ + createTime?: string; + + /** + * 更新人id + */ + updateById?: string | number; + + /** + * 更新人 + */ + updateBy?: string; + + /** + * 更新时间 + */ + updateTime?: string; + + /** + * 数据状态(模拟删除 0:未删除 1:删除) + */ + dataStatus?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/api/property/visitorManagement/model.d.ts b/apps/web-antd/src/api/property/visitorManagement/model.d.ts index 9183fd48..ba0648d1 100644 --- a/apps/web-antd/src/api/property/visitorManagement/model.d.ts +++ b/apps/web-antd/src/api/property/visitorManagement/model.d.ts @@ -1,11 +1,6 @@ import type { PageQuery, BaseEntity } from '#/api/common'; export interface VisitorManagementVO { - /** - * id - */ - id: string | number; - /** * 访客姓名 */ @@ -74,16 +69,6 @@ export interface VisitorManagementForm extends BaseEntity { */ visitingReason?: string; - /** - * 拜访开始时间 - */ - visitingBeginTime?: string; - - /** - * 拜访结束时间 - */ - visitingEndTime?: string; - /** * 预约车位(0:预约,1:不预约) */ diff --git a/apps/web-antd/src/api/property/visitorManagement/types.ts b/apps/web-antd/src/api/property/visitorManagement/types.ts new file mode 100644 index 00000000..6cdc0e83 --- /dev/null +++ b/apps/web-antd/src/api/property/visitorManagement/types.ts @@ -0,0 +1,146 @@ +export interface VisitorManagementVO { + /** + * 访客姓名 + */ + visitorName: string; + + /** + * 访客电话 + */ + visitorPhone: string; + + /** + * 拜访事由 + */ + visitingReason: string; + + /** + * 拜访开始时间 + */ + visitingBeginTime: string; + + /** + * 拜访结束时间 + */ + visitingEndTime: string; + + /** + * 预约车位(0:预约,1:不预约) + */ + bookingParkingSpace: number; + + /** + * 车牌号 + */ + licensePlate: string; + + /** + * 人脸图片 + */ + facePictures: string; + + /** + * 预约状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus: number; + +} + +export interface VisitorManagementForm extends BaseEntity { + /** + * id + */ + id?: string | number; + + /** + * 访客姓名 + */ + visitorName?: string; + + /** + * 访客电话 + */ + visitorPhone?: string; + + /** + * 拜访事由 + */ + visitingReason?: string; + + /** + * 预约车位(0:预约,1:不预约) + */ + bookingParkingSpace?: number; + + /** + * 车牌号 + */ + licensePlate?: string; + + /** + * 人脸图片 + */ + facePictures?: string; + + /** + * 预约状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus?: number; + +} + +export interface VisitorManagementQuery extends PageQuery { + + /** + * 访客姓名 + */ + visitorName?: string; + + /** + * 访客电话 + */ + visitorPhone?: string; + + /** + * 拜访事由 + */ + visitingReason?: string; + + /** + * 拜访开始时间 + */ + visitingBeginTime?: string; + + /** + * 拜访结束时间 + */ + visitingEndTime?: string; + + /** + * 预约车位(0:预约,1:不预约) + */ + bookingParkingSpace?: number; + + /** + * 车牌号 + */ + licensePlate?: string; + + /** + * 人脸图片 + */ + facePictures?: string; + + /** + * 预约状态(0:待确认,1:已确认,2:已取消,3:已完成) + */ + serveStatus?: number; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/apps/web-antd/src/views/property/accessControl/data.ts b/apps/web-antd/src/views/property/accessControl/data.ts index 9a5744e1..3b526b80 100644 --- a/apps/web-antd/src/views/property/accessControl/data.ts +++ b/apps/web-antd/src/views/property/accessControl/data.ts @@ -1,6 +1,8 @@ import type { FormSchemaGetter } from '#/adapter/form'; import type { VxeGridProps } from '#/adapter/vxe-table'; +import { getDictOptions } from '#/utils/dict'; +import { renderDict } from '#/utils/render'; export const querySchema: FormSchemaGetter = () => [ { @@ -31,23 +33,23 @@ export const querySchema: FormSchemaGetter = () => [ { component: 'Input', fieldName: 'accessPort', - label: '设备端口', + label: '端口', }, { - component: 'Select', - componentProps: { - }, + component: 'Input', fieldName: 'accssType', label: '门禁设备类型', }, { component: 'Input', fieldName: 'factoryCode', - label: '工程编号', + label: '工厂编码', }, { component: 'Select', componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_KZKLX 便于维护 + options: getDictOptions('wy_kzklx'), }, fieldName: 'controlType', label: '控制卡类型:1-系统,2-E8', @@ -72,12 +74,21 @@ export const querySchema: FormSchemaGetter = () => [ fieldName: 'dataState', label: '数据状态:1有效,0无效', }, + { + component: 'Input', + fieldName: 'searchValue', + label: '搜索值', + }, ]; // 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新 // export const columns: () => VxeGridProps['columns'] = () => [ export const columns: VxeGridProps['columns'] = [ { type: 'checkbox', width: 60 }, + { + title: '主键', + field: 'id', + }, { title: '门禁设备编码', field: 'accessCode', @@ -99,7 +110,7 @@ export const columns: VxeGridProps['columns'] = [ field: 'accessIp', }, { - title: '设备端口', + title: '端口', field: 'accessPort', }, { @@ -107,12 +118,18 @@ export const columns: VxeGridProps['columns'] = [ field: 'accssType', }, { - title: '工程编号', + title: '工厂编码', field: 'factoryCode', }, { title: '控制卡类型:1-系统,2-E8', field: 'controlType', + slots: { + default: ({ row }) => { + // 可选从DictEnum中获取 DictEnum.WY_KZKLX 便于维护 + return renderDict(row.controlType, 'wy_kzklx'); + }, + }, }, { title: '控制卡类型编码', @@ -130,6 +147,10 @@ export const columns: VxeGridProps['columns'] = [ title: '数据状态:1有效,0无效', field: 'dataState', }, + { + title: '搜索值', + field: 'searchValue', + }, { field: 'action', fixed: 'right', @@ -140,6 +161,15 @@ export const columns: VxeGridProps['columns'] = [ ]; export const modalSchema: FormSchemaGetter = () => [ + { + label: '主键', + fieldName: 'id', + component: 'Input', + dependencies: { + show: () => false, + triggerFields: [''], + }, + }, { label: '门禁设备编码', fieldName: 'accessCode', @@ -170,20 +200,18 @@ export const modalSchema: FormSchemaGetter = () => [ component: 'Input', }, { - label: '设备端口', + label: '端口', fieldName: 'accessPort', component: 'Input', }, { label: '门禁设备类型', fieldName: 'accssType', - component: 'Select', - componentProps: { - }, - rules: 'selectRequired', + component: 'Input', + rules: 'required', }, { - label: '工程编号', + label: '工厂编码', fieldName: 'factoryCode', component: 'Input', rules: 'required', @@ -193,6 +221,8 @@ export const modalSchema: FormSchemaGetter = () => [ fieldName: 'controlType', component: 'Select', componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_KZKLX 便于维护 + options: getDictOptions('wy_kzklx'), }, rules: 'selectRequired', }, @@ -218,4 +248,9 @@ export const modalSchema: FormSchemaGetter = () => [ component: 'Input', rules: 'required', }, + { + label: '搜索值', + fieldName: 'searchValue', + component: 'Input', + }, ]; diff --git a/apps/web-antd/src/views/property/building/data.ts b/apps/web-antd/src/views/property/building/data.ts index 76db14a5..f1866821 100644 --- a/apps/web-antd/src/views/property/building/data.ts +++ b/apps/web-antd/src/views/property/building/data.ts @@ -1,6 +1,8 @@ import type { FormSchemaGetter } from '#/adapter/form'; import type { VxeGridProps } from '#/adapter/vxe-table'; +import { getDictOptions } from '#/utils/dict'; +import { renderDict } from '#/utils/render'; export const querySchema: FormSchemaGetter = () => [ { @@ -49,7 +51,11 @@ export const querySchema: FormSchemaGetter = () => [ label: '维度', }, { - component: 'Input', + component: 'Select', + componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_CQXZ 便于维护 + options: getDictOptions('wy_cqxz'), + }, fieldName: 'cqxz', label: '产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用)', }, @@ -63,11 +69,6 @@ export const querySchema: FormSchemaGetter = () => [ fieldName: 'cqbh', label: '产权编号', }, - { - component: 'Input', - fieldName: 'orgCode', - label: '组织编码', - }, ]; // 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新 @@ -117,6 +118,12 @@ export const columns: VxeGridProps['columns'] = [ { title: '产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用)', field: 'cqxz', + slots: { + default: ({ row }) => { + // 可选从DictEnum中获取 DictEnum.WY_CQXZ 便于维护 + return renderDict(row.cqxz, 'wy_cqxz'); + }, + }, }, { title: '不动产编号', @@ -166,10 +173,6 @@ export const columns: VxeGridProps['columns'] = [ title: '组织编码', field: 'orgCode', }, - { - title: '数据状态:1有效,0无效', - field: 'dataState', - }, { field: 'action', fixed: 'right', @@ -246,8 +249,12 @@ export const modalSchema: FormSchemaGetter = () => [ { label: '产权性质(1:自持,2:承租,3:自持+承租,4:政府免费使用)', fieldName: 'cqxz', - component: 'Input', - rules: 'required', + component: 'Select', + componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_CQXZ 便于维护 + options: getDictOptions('wy_cqxz'), + }, + rules: 'selectRequired', }, { label: '不动产编号', @@ -321,9 +328,4 @@ export const modalSchema: FormSchemaGetter = () => [ component: 'Input', rules: 'required', }, - { - label: '数据状态:1有效,0无效', - fieldName: 'dataState', - component: 'Input', - }, ]; diff --git a/apps/web-antd/src/views/property/ceremonialServe/data.ts b/apps/web-antd/src/views/property/ceremonialServe/data.ts index 830112be..6c1b049d 100644 --- a/apps/web-antd/src/views/property/ceremonialServe/data.ts +++ b/apps/web-antd/src/views/property/ceremonialServe/data.ts @@ -1,6 +1,8 @@ import type { FormSchemaGetter } from '#/adapter/form'; import type { VxeGridProps } from '#/adapter/vxe-table'; +import { getDictOptions } from '#/utils/dict'; +import { renderDict } from '#/utils/render'; export const querySchema: FormSchemaGetter = () => [ { @@ -19,9 +21,7 @@ export const querySchema: FormSchemaGetter = () => [ label: '服务数量', }, { - component: 'Select', - componentProps: { - }, + component: 'Input', fieldName: 'serveType', label: '服务分类', }, @@ -33,27 +33,14 @@ export const querySchema: FormSchemaGetter = () => [ { component: 'RadioGroup', componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_QRZT 便于维护 + options: getDictOptions('wy_qrzt'), buttonStyle: 'solid', optionType: 'button', }, fieldName: 'serveStatus', label: '预订状态', }, - { - component: 'Input', - fieldName: 'createById', - label: '创建人id', - }, - { - component: 'Input', - fieldName: 'updateById', - label: '更新人id', - }, - { - component: 'Input', - fieldName: 'confirmId', - label: '确认人id', - }, { component: 'DatePicker', componentProps: { @@ -79,11 +66,6 @@ export const querySchema: FormSchemaGetter = () => [ fieldName: 'servePrice', label: '服务总价格', }, - { - component: 'Input', - fieldName: 'dataStauts', - label: '数据状态', - }, { component: 'Input', fieldName: 'serveImage', @@ -100,10 +82,6 @@ export const querySchema: FormSchemaGetter = () => [ // export const columns: () => VxeGridProps['columns'] = () => [ export const columns: VxeGridProps['columns'] = [ { type: 'checkbox', width: 60 }, - { - title: 'id', - field: 'id', - }, { title: '分类id', field: 'classificationId', @@ -119,6 +97,12 @@ export const columns: VxeGridProps['columns'] = [ { title: '服务分类', field: 'serveType', + slots: { + default: ({ row }) => { + // 可选从DictEnum中获取 DictEnum.WY_FWFL 便于维护 + return renderDict(row.serveType, 'wy_fwfl'); + }, + }, }, { title: '产品名称', @@ -127,18 +111,12 @@ export const columns: VxeGridProps['columns'] = [ { title: '预订状态', field: 'serveStatus', - }, - { - title: '创建人id', - field: 'createById', - }, - { - title: '更新人id', - field: 'updateById', - }, - { - title: '确认人id', - field: 'confirmId', + slots: { + default: ({ row }) => { + // 可选从DictEnum中获取 DictEnum.WY_QRZT 便于维护 + return renderDict(row.serveStatus, 'wy_qrzt'); + }, + }, }, { title: '服务开始时间', @@ -152,10 +130,6 @@ export const columns: VxeGridProps['columns'] = [ title: '服务总价格', field: 'servePrice', }, - { - title: '数据状态', - field: 'dataStauts', - }, { title: '产品图片', field: 'serveImage', @@ -187,52 +161,43 @@ export const modalSchema: FormSchemaGetter = () => [ label: '分类id', fieldName: 'classificationId', component: 'Input', + rules: 'required', }, { label: '预订id', fieldName: 'roomBookId', component: 'Input', + rules: 'required', }, { label: '服务数量', fieldName: 'serveNum', component: 'Input', + rules: 'required', }, { label: '服务分类', fieldName: 'serveType', - component: 'Select', - componentProps: { - }, + component: 'Input', + rules: 'required', }, { label: '产品名称', fieldName: 'serveName', component: 'Input', + rules: 'required', }, { label: '预订状态', fieldName: 'serveStatus', component: 'RadioGroup', componentProps: { + // 可选从DictEnum中获取 DictEnum.WY_QRZT 便于维护 + options: getDictOptions('wy_qrzt'), buttonStyle: 'solid', optionType: 'button', }, - }, - { - label: '创建人id', - fieldName: 'createById', - component: 'Input', - }, - { - label: '更新人id', - fieldName: 'updateById', - component: 'Input', - }, - { - label: '确认人id', - fieldName: 'confirmId', - component: 'Input', + rules: 'selectRequired', }, { label: '服务开始时间', @@ -243,6 +208,7 @@ export const modalSchema: FormSchemaGetter = () => [ format: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'YYYY-MM-DD HH:mm:ss', }, + rules: 'required', }, { label: '服务结束时间', @@ -253,16 +219,13 @@ export const modalSchema: FormSchemaGetter = () => [ format: 'YYYY-MM-DD HH:mm:ss', valueFormat: 'YYYY-MM-DD HH:mm:ss', }, + rules: 'required', }, { label: '服务总价格', fieldName: 'servePrice', component: 'Input', - }, - { - label: '数据状态', - fieldName: 'dataStauts', - component: 'Input', + rules: 'required', }, { label: '产品图片', @@ -272,10 +235,12 @@ export const modalSchema: FormSchemaGetter = () => [ // accept: 'image/*', // 可选拓展名或者mime类型 ,拼接 // maxCount: 1, // 最大上传文件数 默认为1 为1会绑定为string而非string[]类型 }, + rules: 'required', }, { label: '排序', fieldName: 'sort', component: 'Input', + rules: 'required', }, ]; diff --git a/apps/web-antd/src/views/property/ceremonialServe/index.vue b/apps/web-antd/src/views/property/ceremonialServe/index.vue index e6b79fca..7cee1b05 100644 --- a/apps/web-antd/src/views/property/ceremonialServe/index.vue +++ b/apps/web-antd/src/views/property/ceremonialServe/index.vue @@ -118,7 +118,7 @@ function handleMultiDelete() { } function handleDownloadExcel() { - commonDownloadExcel(ceremonialServeExport, '服务数据', tableApi.formApi.form.values, { + commonDownloadExcel(ceremonialServeExport, '会议服务数据', tableApi.formApi.form.values, { fieldMappingTime: formOptions.fieldMappingTime, }); } @@ -126,7 +126,7 @@ function handleDownloadExcel() {