| | |
| | | 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: 'post', |
| | | data |
| | | }) |
| | | } |
| | | // 会议室 结束 |
| | | export const closeMeetignById = (data) => { |
| | | return http({ |
| | | url: 'meetingAdmin/cloudService/business/meeting/reservationOver', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | // 会议室 开始 |
| | | export const startMeetignById = (data) => { |
| | | return http({ |
| | | url: 'meetingAdmin/cloudService/web/meeting/start', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |
| | | // 会议室 提前开始 |
| | | export const startEarlyMeetignById = (data) => { |
| | | return http({ |
| | | url: 'meetingAdmin/cloudService/web/meeting/startEarly', |
| | | method: 'post', |
| | | data |
| | | }) |
| | | } |