|  |  |  | 
|---|
|  |  |  | data | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 会议室 h5详情 | 
|---|
|  |  |  | export const getAppRoomDetail = (id) => { | 
|---|
|  |  |  | return http({ | 
|---|
|  |  |  | url: 'meetingAdmin/cloudService/business/bookings/'+id, | 
|---|
|  |  |  | method: 'get' | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 会议室 管理 | 
|---|
|  |  |  | export const myMeetingPage = (data) => { | 
|---|
|  |  |  | return http({ | 
|---|
|  |  |  | 
|---|
|  |  |  | 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 | 
|---|
|  |  |  | }) | 
|---|
|  |  |  | } | 
|---|