153 lines
4.2 KiB
TypeScript
153 lines
4.2 KiB
TypeScript
import { Tag, Typography } from 'antd';
|
|
import React from 'react';
|
|
import XinTable from '@/components/XinTable';
|
|
import type { XinTableColumn, XinTableProps } from '@/components/XinTable/typings';
|
|
import type IOrderRefund from '@/domain/iOrderRefund';
|
|
import { useTranslation } from 'react-i18next';
|
|
import dayjs from 'dayjs';
|
|
import relativeTime from 'dayjs/plugin/relativeTime';
|
|
|
|
const { Title, Text } = Typography;
|
|
dayjs.extend(relativeTime);
|
|
|
|
const Table: React.FC = () => {
|
|
const { t } = useTranslation();
|
|
|
|
const columns: XinTableColumn<IOrderRefund>[] = [
|
|
{
|
|
title: t('merchant.refund.id'),
|
|
dataIndex: 'id',
|
|
hideInForm: true,
|
|
sorter: true,
|
|
align: 'center',
|
|
width: 80,
|
|
},
|
|
{
|
|
title: t('merchant.refund.refund_no'),
|
|
dataIndex: 'refund_no',
|
|
valueType: 'text',
|
|
align: 'center',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: t('merchant.refund.order_id'),
|
|
dataIndex: 'order_id',
|
|
valueType: 'text',
|
|
align: 'center',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: t('merchant.refund.user_id'),
|
|
dataIndex: 'user_id',
|
|
valueType: 'text',
|
|
align: 'center',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: t('merchant.refund.merchant_id'),
|
|
dataIndex: 'merchant_id',
|
|
valueType: 'text',
|
|
align: 'center',
|
|
hideInSearch: true,
|
|
},
|
|
{
|
|
title: t('merchant.refund.amount'),
|
|
dataIndex: 'amount',
|
|
hideInForm: true,
|
|
hideInSearch: true,
|
|
align: 'center',
|
|
render: (value: number) => `¥${value ?? '0.00'}`,
|
|
},
|
|
{
|
|
title: t('merchant.refund.reason'),
|
|
dataIndex: 'reason',
|
|
valueType: 'text',
|
|
hideInSearch: true,
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: t('merchant.refund.status'),
|
|
dataIndex: 'status',
|
|
valueType: 'select',
|
|
fieldProps: {
|
|
options: [
|
|
{ value: 0, label: t('merchant.refund.status.0') },
|
|
{ value: 1, label: t('merchant.refund.status.1') },
|
|
{ value: 2, label: t('merchant.refund.status.2') },
|
|
{ value: 3, label: t('merchant.refund.status.3') },
|
|
],
|
|
},
|
|
render: (value: number) => {
|
|
const colorMap: Record<number, string> = { 0: 'warning', 1: 'processing', 2: 'success', 3: 'error' };
|
|
const labelMap: Record<number, string> = {
|
|
0: t('merchant.refund.status.0'),
|
|
1: t('merchant.refund.status.1'),
|
|
2: t('merchant.refund.status.2'),
|
|
3: t('merchant.refund.status.3'),
|
|
};
|
|
return <Tag color={colorMap[value] ?? 'default'}>{labelMap[value] ?? '-'}</Tag>;
|
|
},
|
|
filters: [
|
|
{ text: t('merchant.refund.status.0'), value: 0 },
|
|
{ text: t('merchant.refund.status.1'), value: 1 },
|
|
{ text: t('merchant.refund.status.2'), value: 2 },
|
|
{ text: t('merchant.refund.status.3'), value: 3 },
|
|
],
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: t('merchant.refund.reply'),
|
|
dataIndex: 'reply',
|
|
valueType: 'text',
|
|
hideInSearch: true,
|
|
align: 'center',
|
|
},
|
|
{
|
|
title: t('merchant.refund.processed_at'),
|
|
dataIndex: 'processed_at',
|
|
hideInForm: true,
|
|
hideInSearch: true,
|
|
align: 'center',
|
|
render: (value: string) => (value ? dayjs(value).format('YYYY-MM-DD HH:mm:ss') : '-'),
|
|
},
|
|
{
|
|
title: t('merchant.refund.created_at'),
|
|
hideInForm: true,
|
|
hideInSearch: true,
|
|
dataIndex: 'created_at',
|
|
align: 'center',
|
|
render: (value: string) => (value ? dayjs(value).fromNow() : '-'),
|
|
},
|
|
];
|
|
|
|
const tableProps: XinTableProps<IOrderRefund> = {
|
|
api: '/merchant/refund',
|
|
columns,
|
|
rowKey: 'id',
|
|
accessName: 'merchant.refund',
|
|
addShow: false,
|
|
scroll: { x: 1200 },
|
|
formProps: {
|
|
grid: true,
|
|
colProps: { span: 12 },
|
|
rowProps: { gutter: [30, 0] },
|
|
layout: 'vertical',
|
|
},
|
|
modalProps: { width: 800 },
|
|
cardProps: { variant: 'borderless' },
|
|
pagination: { size: 'small', style: { marginBottom: 0 } },
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<div className="mb-5">
|
|
<Title level={3}>{t('merchant.refund.page.title')}</Title>
|
|
<Text type="secondary">{t('merchant.refund.page.description')}</Text>
|
|
</div>
|
|
<XinTable<IOrderRefund> {...tableProps} />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Table;
|