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

Loading…
Cancel
Save