From 1477a1353e96b5620a29c78e2b08647a1a2bc5b7 Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期二, 15 十月 2024 19:07:25 +0800
Subject: [PATCH] ll
---
h5/api/meeting.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/h5/api/meeting.js b/h5/api/meeting.js
index 4f7a800..0eed5fb 100644
--- a/h5/api/meeting.js
+++ b/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,51 @@
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
+ })
+}
--
Gitblit v1.9.3