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 b4dfa4a8..44ef79cd 100644 --- a/apps/web-antd/src/api/property/building/model.d.ts +++ b/apps/web-antd/src/api/property/building/model.d.ts @@ -29,7 +29,7 @@ export interface BuildingVO { /** * 建筑类型('1:住宅','2:商业','3:混合') */ - buildType: number; + buildType: string; /** * 电梯数量 diff --git a/apps/web-antd/src/api/property/businessManagement/workOrders/model.d.ts b/apps/web-antd/src/api/property/businessManagement/workOrders/model.d.ts index 3498c884..ea2e3fac 100644 --- a/apps/web-antd/src/api/property/businessManagement/workOrders/model.d.ts +++ b/apps/web-antd/src/api/property/businessManagement/workOrders/model.d.ts @@ -1,4 +1,4 @@ -import type { PageQuery, BaseEntity } from '#/api/common'; +import type {PageQuery, BaseEntity} from '#/api/common'; export interface WorkOrdersVO { /** @@ -71,8 +71,40 @@ export interface WorkOrdersVO { */ isTimeOut: number; + workOrdersRecordVoList: HandleRecords[]; + + typeName: string; + + initiatorPeople: string; + + handlerText: string; + /** + * 评价图片 + */ + imgUrl: string; + /** + * 评价内容 + */ + serviceEvaluaText: string; + /** + * 创建时间 + */ + createTime: string; + /** + * 备注 + */ + remark: string; + } +export interface HandleRecords { + status: string; + createTime: string; + handlerName: string; + initiatorPeople: string; +} + + export interface WorkOrdersForm extends BaseEntity { /** * id @@ -213,7 +245,7 @@ export interface WorkOrdersQuery extends PageQuery { isTimeOut?: number; /** - * 日期范围参数 - */ + * 日期范围参数 + */ params?: any; } diff --git a/apps/web-antd/src/api/property/room/model.d.ts b/apps/web-antd/src/api/property/room/model.d.ts index a01052ac..cb62110d 100644 --- a/apps/web-antd/src/api/property/room/model.d.ts +++ b/apps/web-antd/src/api/property/room/model.d.ts @@ -19,7 +19,7 @@ export interface RoomVO { /** * 房间类型('住宅','商铺','办公室','设备间','公共区域') */ - roomType: number; + roomType: string; /** * 建筑面积(平方米) @@ -49,7 +49,7 @@ export interface RoomVO { /** * 状态('空置','已售','已租','自用') */ - status: number; + status: string; } diff --git a/apps/web-antd/src/api/property/roomBooking/conferenceAddServices/model.d.ts b/apps/web-antd/src/api/property/roomBooking/conferenceAddServices/model.d.ts index 6a31137a..8948095e 100644 --- a/apps/web-antd/src/api/property/roomBooking/conferenceAddServices/model.d.ts +++ b/apps/web-antd/src/api/property/roomBooking/conferenceAddServices/model.d.ts @@ -40,6 +40,10 @@ export interface AttachVO { * 创建时间 */ createTime: string; + + quantity: number; + + meetAttachId: string; } export interface AttachForm extends BaseEntity { diff --git a/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/attendance-group-detail.vue b/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/attendance-group-detail.vue index 7037f95a..5c656941 100644 --- a/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/attendance-group-detail.vue +++ b/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/attendance-group-detail.vue @@ -213,7 +213,7 @@ async function showHoliday() { {{ '第' + (index + 1) + '天' }} diff --git a/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/group-modal.vue b/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/group-modal.vue index b5d4123f..10663dcb 100644 --- a/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/group-modal.vue +++ b/apps/web-antd/src/views/property/attendanceManagement/attendanceGroupSettings/group-modal.vue @@ -111,7 +111,6 @@ const [BasicModal, modalApi] = useVbenModal({ settingData.cycleData=record.scheduleCycleList settingData.cycleData.forEach(item => { if(item.shiftId){ - item.scheduleId=item.shiftId const shift = record.attendanceList.find(i => item.shiftId == i.id); let str = '' if (shift.isRest) { @@ -135,7 +134,7 @@ const [BasicModal, modalApi] = useVbenModal({ shiftId: null, }) }) - settingData.cycleData = [{scheduleId: ''}, {scheduleId: ''}]; + settingData.cycleData = [{shiftId: ''}, {shiftId: ''}]; } await markInitialized(); modalApi.modalLoading(false); @@ -154,7 +153,7 @@ async function handleConfirm() { if (data.attendanceType == 1) { let hasError = true; settingData.cycleData.some((item, index) => { - if (!item.scheduleId) { + if (!item.shiftId) { hasError = false message.warning('请选择周期天数对应班次。'); return; @@ -252,7 +251,7 @@ function handleShiftList(list: any[]) { function addCycleHandle() { if (settingData.cycleData.length < 31) { settingData.cycleData.push({ - scheduleId: '', + shiftId: '', }) } else { message.warning('周期天数最多31天。'); @@ -492,7 +491,7 @@ function getUnCheckInData(val: any) {