Browse Source

feat: 好友审核模块

master
wangxiang 2 years ago
parent
commit
dc58f6265c
  1. 6
      src/views/common/push/pushFriendAudit/index.vue

6
src/views/common/push/pushFriendAudit/index.vue

@ -9,7 +9,7 @@ @@ -9,7 +9,7 @@
type="primary"
:disabled="state.multiple"
@click="handleDel()"
>移除粉丝</a-button>
>驳回申请</a-button>
</template>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'action'">
@ -111,10 +111,10 @@ @@ -111,10 +111,10 @@
createConfirm({
iconType: 'warning',
title: '警告',
content: `是否确认移除编号为${ids}的数据?`,
content: `是否确认驳回编号为${ids}的数据?`,
onOk: async () => {
await delPushConcernFan(ids);
createMessage.success('移除成功!');
createMessage.success('驳回成功!');
handleRefreshTable();
}
});

Loading…
Cancel
Save