Explorar el Código

增加其他会议--实施会议确认方法扩展

humingbo hace 1 año
padre
commit
887416c1d1
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      src/api/meeting/meeting.js

+ 13 - 0
src/api/meeting/meeting.js

@@ -295,3 +295,16 @@ export function editMeeting(data){
     data: data
   })
 }
+
+/**
+ * 确认其他会议、实施会议方法--扩展
+ * @param data
+ * @returns {*}
+ */
+export function confirmOthersMeeting(data){
+  return request({
+    url: '/meeting/confirmOtherMeeting',
+    method: 'post',
+    data: data
+  })
+}