127 lines
3.0 KiB
Vue
127 lines
3.0 KiB
Vue
<script lang="ts" setup>
|
|
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
|
import type { MpUserApi } from '#/api/mp/user';
|
|
|
|
import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
|
|
|
import { ElMessage, ElLoading } from 'element-plus';
|
|
|
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
|
import { getUserPage, syncUser } from '#/api/mp/user';
|
|
import { $t } from '#/locales';
|
|
|
|
import { useGridColumns, useGridFormSchema } from './data';
|
|
import Form from './modules/form.vue';
|
|
|
|
defineOptions({ name: 'MpUser' });
|
|
|
|
const [FormModal, formModalApi] = useVbenModal({
|
|
connectedComponent: Form,
|
|
destroyOnClose: true,
|
|
});
|
|
|
|
/** 刷新表格 */
|
|
function handleRefresh() {
|
|
gridApi.query();
|
|
}
|
|
|
|
/** 编辑用户 */
|
|
function handleEdit(row: MpUserApi.User) {
|
|
formModalApi.setData({ id: row.id }).open();
|
|
}
|
|
|
|
/** 同步粉丝 */
|
|
async function handleSync() {
|
|
const formValues = await gridApi.formApi.getValues();
|
|
const accountId = formValues.accountId;
|
|
if (!accountId) {
|
|
ElMessage.warning('请先选择公众号');
|
|
return;
|
|
}
|
|
|
|
await confirm('是否确认同步粉丝?');
|
|
const loadingInstance = ElLoading.service({
|
|
text: '正在同步粉丝...',
|
|
});
|
|
try {
|
|
await syncUser(accountId);
|
|
ElMessage.success(
|
|
'开始从微信公众号同步粉丝信息,同步需要一段时间,建议稍后再查询',
|
|
);
|
|
handleRefresh();
|
|
} finally {
|
|
loadingInstance.close();
|
|
}
|
|
}
|
|
|
|
const [Grid, gridApi] = useVbenVxeGrid({
|
|
formOptions: {
|
|
schema: useGridFormSchema(),
|
|
},
|
|
gridOptions: {
|
|
columns: useGridColumns(),
|
|
height: 'auto',
|
|
keepSource: true,
|
|
proxyConfig: {
|
|
ajax: {
|
|
query: async ({ page }, formValues) => {
|
|
return await getUserPage({
|
|
pageNo: page.currentPage,
|
|
pageSize: page.pageSize,
|
|
...formValues,
|
|
});
|
|
},
|
|
},
|
|
},
|
|
rowConfig: {
|
|
keyField: 'id',
|
|
isHover: true,
|
|
},
|
|
toolbarConfig: {
|
|
refresh: true,
|
|
search: true,
|
|
},
|
|
} as VxeTableGridOptions<MpUserApi.User>,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Page auto-content-height>
|
|
<template #doc>
|
|
<DocAlert title="公众号粉丝" url="https://doc.iocoder.cn/mp/user/" />
|
|
</template>
|
|
|
|
<FormModal @success="handleRefresh" />
|
|
|
|
<Grid table-title="粉丝列表">
|
|
<template #toolbar-tools>
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: '同步',
|
|
type: 'primary',
|
|
icon: ACTION_ICON.REFRESH,
|
|
auth: ['mp:user:sync'],
|
|
onClick: handleSync,
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
<template #actions="{ row }">
|
|
<TableAction
|
|
:actions="[
|
|
{
|
|
label: $t('common.edit'),
|
|
type: 'primary',
|
|
link: true,
|
|
icon: ACTION_ICON.EDIT,
|
|
auth: ['mp:user:update'],
|
|
onClick: handleEdit.bind(null, row),
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</Grid>
|
|
</Page>
|
|
</template>
|