lex-xin 6 月之前
父節點
當前提交
ef8de3ef7f

+ 3 - 3
src/TUIKit/TUIComponents/container/TUIChat/manage-components/manage-notification-detail.vue

@@ -225,7 +225,7 @@ const ManageNotification = defineComponent({
           data.id = item.id;
         } else if (type === "top") {
           await imGroupNoticeUpdate({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             topFlag: true,
             id: item.id,
           });
@@ -262,7 +262,7 @@ const ManageNotification = defineComponent({
         //
         if (data.id) {
           await imGroupNoticeUpdate({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             topFlag: data.topFlag,
             title: data.title,
             content: data.input,
@@ -270,7 +270,7 @@ const ManageNotification = defineComponent({
           });
         } else {
           await imGroupNoticeSave({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             title: data.title,
             content: data.input,
             topFlag: data.topFlag,

+ 4 - 4
src/TUIKit/TUIComponents/container/TUIChat/manage-components/manage-notification.vue

@@ -196,7 +196,7 @@ const ManageNotification = defineComponent({
       try {
         // 获取群公告
         let res = await imGroupNoticePage({
-          groupId: data.groupProfile.groupID,
+          imGroupId: data.groupProfile.groupID,
           page: data.page,
           rows: data.rows,
         });
@@ -235,7 +235,7 @@ const ManageNotification = defineComponent({
           data.id = item.id;
         } else if (type === "top") {
           await imGroupNoticeUpdate({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             isTop: true,
             id: item.id,
           });
@@ -276,7 +276,7 @@ const ManageNotification = defineComponent({
         //
         if (data.id) {
           await imGroupNoticeUpdate({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             isTop: data.isTop,
             title: data.title,
             content: data.input,
@@ -284,7 +284,7 @@ const ManageNotification = defineComponent({
           });
         } else {
           await imGroupNoticeSave({
-            groupId: data.groupProfile.groupID,
+            imGroupId: data.groupProfile.groupID,
             title: data.title,
             content: data.input,
             isTop: data.isTop,

+ 3 - 0
src/TUIKit/api.ts

@@ -71,6 +71,7 @@ if (platform == "daya") {
 }
 export const imGroupNoticeSave = (params?: object) => {
   return request.post(imGroupNoticeSaveUrl, {
+    requestType: 'form',
     data: params,
   });
 };
@@ -81,6 +82,7 @@ export const imGroupNoticeSave = (params?: object) => {
 export const imGroupNoticeRemove = (params?: any) => {
   if (platform == "daya") {
     return request.post(api + "/imGroupNotice/del", {
+      requestType: 'form',
       data: params,
     });
   }
@@ -96,6 +98,7 @@ export const imGroupNoticeRemove = (params?: any) => {
  */
 export const imGroupNoticeUpdate = (params?: object) => {
   return request.post(api + "/imGroupNotice/update", {
+    requestType: 'form',
     data: params,
   });
 };