Files
aiot-platform-ui/apps/web-antd/src/views/member/user/index.vue
2025-09-05 14:11:35 +08:00

197 lines
4.9 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script lang="ts" setup>
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
import type { MemberUserApi } from '#/api/member/user';
import { ref } from 'vue';
import { useRouter } from 'vue-router';
import { DocAlert, Page, useVbenModal } from '@vben/common-ui';
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
import { getUserPage } from '#/api/member/user';
import { $t } from '#/locales';
import { useGridColumns, useGridFormSchema } from './data';
import BalanceForm from './modules/balance-form.vue';
import Form from './modules/form.vue';
import LevelForm from './modules/level-form.vue';
import PointForm from './modules/point-form.vue';
const router = useRouter();
const [FormModal, formModalApi] = useVbenModal({
connectedComponent: Form,
destroyOnClose: true,
});
const [PointFormModal, pointFormModalApi] = useVbenModal({
connectedComponent: PointForm,
destroyOnClose: true,
});
const [BalanceFormModal, balanceFormModalApi] = useVbenModal({
connectedComponent: BalanceForm,
destroyOnClose: true,
});
const [LevelFormModal, levelFormModalApi] = useVbenModal({
connectedComponent: LevelForm,
destroyOnClose: true,
});
/** 刷新表格数据 */
function onRefresh() {
gridApi.query();
}
/** 设置选中 ID */
const checkedIds = ref<number[]>([]);
function setCheckedIds({ records }: { records: MemberUserApi.User[] }) {
checkedIds.value = records.map((item) => item.id!);
}
/** 发送优惠券 */
// TODO @xingyu这个功能没开发对是发送优惠劵哈
function handleSendCoupon() {
formModalApi.setData(null).open();
}
/** 编辑会员 */
function handleEdit(row: MemberUserApi.User) {
formModalApi.setData(row).open();
}
/** 修改会员等级 */
function handleUpdateLevel(row: MemberUserApi.User) {
levelFormModalApi.setData(row).open();
}
/** 修改会员积分 */
function handleUpdatePoint(row: MemberUserApi.User) {
pointFormModalApi.setData(row).open();
}
/** 修改会员余额 */
function handleUpdateBalance(row: MemberUserApi.User) {
balanceFormModalApi.setData(row).open();
}
/** 查看会员详情 */
function handleViewDetail(row: MemberUserApi.User) {
router.push({
name: 'MemberUserDetail',
query: {
id: row.id,
},
});
}
// 表格实例
const [Grid, gridApi] = useVbenVxeGrid({
formOptions: {
schema: useGridFormSchema(),
},
gridOptions: {
columns: useGridColumns(),
checkboxConfig: {
highlight: true,
labelField: 'checkbox',
},
height: 'auto',
keepSource: true,
proxyConfig: {
ajax: {
query: async ({ page }, formValues) => {
return await getUserPage({
pageNo: page.currentPage,
pageSize: page.pageSize,
...formValues,
});
},
},
},
rowConfig: {
keyField: 'id',
},
toolbarConfig: {
refresh: true,
search: true,
},
} as VxeTableGridOptions<MemberUserApi.User>,
gridEvents: {
checkboxAll: setCheckedIds,
checkboxChange: setCheckedIds,
},
});
</script>
<template>
<Page auto-content-height>
<template #doc>
<DocAlert
title="会员用户、标签、分组"
url="https://doc.iocoder.cn/member/user/"
/>
</template>
<FormModal @success="onRefresh" />
<PointFormModal @success="onRefresh" />
<BalanceFormModal @success="onRefresh" />
<LevelFormModal @success="onRefresh" />
<Grid table-title="会员列表">
<template #toolbar-tools>
<TableAction
:actions="[
{
label: '发送优惠券',
type: 'primary',
icon: 'lucide:mouse-pointer-2',
auth: ['promotion:coupon:send'],
onClick: handleSendCoupon,
},
]"
/>
</template>
<template #actions="{ row }">
<TableAction
:actions="[
{
label: $t('common.detail'),
type: 'link',
icon: ACTION_ICON.VIEW,
onClick: handleViewDetail.bind(null, row),
},
]"
:drop-down-actions="[
{
label: $t('common.edit'),
type: 'link',
auth: ['member:user:update'],
onClick: handleEdit.bind(null, row),
},
{
label: '修改等级',
type: 'link',
auth: ['member:user:update-level'],
onClick: handleUpdateLevel.bind(null, row),
},
{
label: '修改积分',
type: 'link',
auth: ['member:user:update-point'],
onClick: handleUpdatePoint.bind(null, row),
},
{
label: '修改余额',
type: 'link',
auth: ['pay:wallet:update-balance'],
onClick: handleUpdateBalance.bind(null, row),
},
]"
/>
</template>
</Grid>
</Page>
</template>