521 lines
14 KiB
Vue
521 lines
14 KiB
Vue
<script lang="ts" setup>
|
||
// TODO @xingyu:是不是不引入 @form-create/ant-design-vue 组件哈;保持和 vben 一致~;
|
||
import type { VxeTableGridOptions } from '#/adapter/vxe-table';
|
||
import type { PayAppApi } from '#/api/pay/app';
|
||
|
||
import { confirm, DocAlert, Page, useVbenModal } from '@vben/common-ui';
|
||
|
||
import { message } from 'ant-design-vue';
|
||
|
||
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
||
import { changeAppStatus, deleteApp, getAppPage } from '#/api/pay/app';
|
||
import { $t } from '#/locales';
|
||
import { CommonStatusEnum, PayChannelEnum } from '#/utils';
|
||
|
||
import { useGridColumns, useGridFormSchema } from './data';
|
||
import appFrom from './modules/app-form.vue';
|
||
import channelFrom from './modules/channel-form.vue';
|
||
|
||
/** 刷新表格 */
|
||
function onRefresh() {
|
||
gridApi.query();
|
||
}
|
||
|
||
const [AppFormModal, appFormModalApi] = useVbenModal({
|
||
connectedComponent: appFrom,
|
||
destroyOnClose: true,
|
||
});
|
||
|
||
const [ChannelFormModal, channelFormModalApi] = useVbenModal({
|
||
connectedComponent: channelFrom,
|
||
destroyOnClose: true,
|
||
});
|
||
|
||
function handleCreate() {
|
||
appFormModalApi.setData(null).open();
|
||
}
|
||
|
||
function handleEdit(row: Required<PayAppApi.App>) {
|
||
appFormModalApi.setData({ id: row.id }).open();
|
||
}
|
||
|
||
async function handleDelete(row: Required<PayAppApi.App>) {
|
||
const hideLoading = message.loading({
|
||
content: $t('ui.actionMessage.deleting', [row.name]),
|
||
key: 'action_key_msg',
|
||
});
|
||
try {
|
||
await deleteApp(row.id as number);
|
||
message.success({
|
||
content: $t('ui.actionMessage.deleteSuccess', [row.name]),
|
||
key: 'action_key_msg',
|
||
});
|
||
onRefresh();
|
||
} finally {
|
||
hideLoading();
|
||
}
|
||
}
|
||
|
||
/** 更新状态 */
|
||
async function handleStatusChange(
|
||
newStatus: number,
|
||
row: PayAppApi.App,
|
||
): Promise<boolean | undefined> {
|
||
return new Promise((resolve, reject) => {
|
||
const text = newStatus === CommonStatusEnum.ENABLE ? '启用' : '停用';
|
||
confirm({
|
||
content: `确认要${text + row.name}应用吗?`,
|
||
})
|
||
.then(async () => {
|
||
// 更新状态
|
||
const res = await changeAppStatus({
|
||
id: row.id as number,
|
||
status: newStatus,
|
||
});
|
||
if (res) {
|
||
// 提示并返回成功
|
||
message.success(`${text}成功`);
|
||
resolve(true);
|
||
} else {
|
||
reject(new Error('更新失败'));
|
||
}
|
||
})
|
||
.catch(() => {
|
||
reject(new Error('取消操作'));
|
||
});
|
||
});
|
||
}
|
||
|
||
/**
|
||
* 根据渠道编码判断渠道列表中是否存在
|
||
*
|
||
* @param channels 渠道列表
|
||
* @param channelCode 渠道编码
|
||
*/
|
||
function isChannelExists(channels: string[], channelCode: string) {
|
||
if (!channels) {
|
||
return false;
|
||
}
|
||
return channels.includes(channelCode);
|
||
}
|
||
|
||
async function openChannelForm(row: PayAppApi.App, payCode: string) {
|
||
channelFormModalApi.setData({ id: row.id, payCode }).open();
|
||
}
|
||
|
||
const [Grid, gridApi] = useVbenVxeGrid({
|
||
formOptions: {
|
||
schema: useGridFormSchema(),
|
||
},
|
||
gridOptions: {
|
||
columns: useGridColumns(handleStatusChange),
|
||
height: 'auto',
|
||
keepSource: true,
|
||
proxyConfig: {
|
||
ajax: {
|
||
query: async ({ page }, formValues) => {
|
||
return await getAppPage({
|
||
pageNo: page.currentPage,
|
||
pageSize: page.pageSize,
|
||
...formValues,
|
||
});
|
||
},
|
||
},
|
||
},
|
||
rowConfig: {
|
||
keyField: 'id',
|
||
},
|
||
toolbarConfig: {
|
||
refresh: { code: 'query' },
|
||
search: true,
|
||
},
|
||
} as VxeTableGridOptions<PayAppApi.App>,
|
||
});
|
||
</script>
|
||
|
||
<template>
|
||
<Page auto-content-height>
|
||
<template #doc>
|
||
<DocAlert title="支付功能开启" url="https://doc.iocoder.cn/pay/build/" />
|
||
</template>
|
||
|
||
<AppFormModal @success="onRefresh" />
|
||
<ChannelFormModal @success="onRefresh" />
|
||
|
||
<Grid>
|
||
<template #toolbar-tools>
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
label: $t('ui.actionTitle.create', ['应用']),
|
||
type: 'primary',
|
||
icon: ACTION_ICON.ADD,
|
||
auth: ['pay:app:create'],
|
||
onClick: handleCreate,
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #actions="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
label: $t('common.edit'),
|
||
type: 'link',
|
||
icon: ACTION_ICON.EDIT,
|
||
auth: ['pay:app:update'],
|
||
onClick: handleEdit.bind(null, row),
|
||
},
|
||
{
|
||
label: $t('common.delete'),
|
||
type: 'link',
|
||
danger: true,
|
||
icon: ACTION_ICON.DELETE,
|
||
auth: ['pay:app:delete'],
|
||
popConfirm: {
|
||
title: $t('ui.actionMessage.deleteConfirm', [row.name]),
|
||
confirm: handleDelete.bind(null, row),
|
||
},
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #alipayAppConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_APP.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_APP.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.ALIPAY_APP.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #alipayPCConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_PC.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_PC.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.ALIPAY_PC.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #alipayWAPConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_WAP.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_WAP.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.ALIPAY_WAP.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #alipayQrConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_QR.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_QR.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.ALIPAY_QR.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #alipayBarConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_BAR.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.ALIPAY_BAR.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.ALIPAY_BAR.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxLiteConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_LITE.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_LITE.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_LITE.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxPubConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_PUB.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_PUB.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_PUB.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxAppConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_APP.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_APP.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_APP.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxNativeConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_NATIVE.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_NATIVE.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_NATIVE.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxWapConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_WAP.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_WAP.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_WAP.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #wxBarConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_BAR.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WX_BAR.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WX_BAR.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #walletConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WALLET.code,
|
||
)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.WALLET.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.WALLET.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
<template #mockConfig="{ row }">
|
||
<TableAction
|
||
:actions="[
|
||
{
|
||
type: 'primary',
|
||
size: 'small',
|
||
icon: isChannelExists(row.channelCodes, PayChannelEnum.MOCK.code)
|
||
? 'lucide:check'
|
||
: 'lucide:x',
|
||
danger: !isChannelExists(
|
||
row.channelCodes,
|
||
PayChannelEnum.MOCK.code,
|
||
),
|
||
shape: 'circle',
|
||
onClick: openChannelForm.bind(
|
||
null,
|
||
row,
|
||
PayChannelEnum.MOCK.code,
|
||
),
|
||
},
|
||
]"
|
||
/>
|
||
</template>
|
||
</Grid>
|
||
</Page>
|
||
</template>
|