Parcourir la source

增加会议通知导出api

humingbo il y a 1 an
Parent
commit
adf6cb48fa
1 fichiers modifiés avec 10 ajouts et 0 suppressions
  1. 10 0
      src/api/meeting/meeting.js

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

@@ -271,3 +271,13 @@ export function getMeetingContentsByMeetingId(id){
   })
 }
 
+/**
+ * 根据id导出会议通知
+ * @param id
+ */
+export function exportOutMeetingNotice(id){
+  return request({
+    url: '/meeting/exportOutMeetingNotice?meetingId='+id,
+    method: 'get'
+  })
+}