liukangdong
2024-06-19 e2b173475a8bf14717a53f2daa0257804644bd45
h5/api/meeting.js
@@ -48,6 +48,13 @@
    data
  })
}
// 会议室 h5详情
export const getAppRoomDetail = (id) => {
  return http({
    url: 'meetingAdmin/cloudService/business/bookings/'+id,
    method: 'get'
  })
}
// 会议室 管理
export const myMeetingPage = (data) => {
  return http({
@@ -56,3 +63,27 @@
    data
  })
}
// 会议室 当月
export const monthMeetingPage = (data) => {
  return http({
    url: 'meetingAdmin/cloudService/web/meeting/monthMeeting',
    method: 'get',
    data
  })
}
// 会议室 修改
export const updateById = (data) => {
  return http({
    url: 'meetingAdmin/cloudService/business/rooms/updateById',
    method: 'post',
    data
  })
}
// 会议室 撤回
export const cancelById = (data) => {
  return http({
    url: 'meetingAdmin/cloudService/business/meeting/reservationCancel',
    method: 'get',
    data
  })
}