All checks were successful
Build and Push Docker Image / build (push) Successful in 3m28s
70 lines
1.7 KiB
TypeScript
70 lines
1.7 KiB
TypeScript
import {
|
|
MyButtons,
|
|
MyColumns,
|
|
MyPageContainer,
|
|
MyProTableProps,
|
|
usePageTabs,
|
|
} from '@/common';
|
|
import { Apis } from '@/gen/Apis';
|
|
import { ProTable } from '@ant-design/pro-components';
|
|
import { Space } from 'antd';
|
|
import Create from './modals/Create';
|
|
import Update from './modals/Update';
|
|
|
|
export default function Index({ title = '推送任务' }) {
|
|
// 注册当前页面为标签页
|
|
usePageTabs({
|
|
tabKey: 'moments-list',
|
|
tabLabel: title,
|
|
});
|
|
|
|
return (
|
|
<MyPageContainer
|
|
title={title}
|
|
enableTabs={true}
|
|
tabKey="moments-list"
|
|
tabLabel={title}
|
|
>
|
|
<ProTable
|
|
{...MyProTableProps.props}
|
|
expandable={{
|
|
defaultExpandAllRows: true,
|
|
}}
|
|
request={async (params, sort) =>
|
|
MyProTableProps.request(
|
|
params,
|
|
sort,
|
|
Apis.Customer.CustomerMoments.List,
|
|
)
|
|
}
|
|
toolBarRender={(action) => [
|
|
<Create key="Create" reload={action?.reload} title={title} />,
|
|
]}
|
|
columns={[
|
|
MyColumns.ID(),
|
|
{
|
|
title: '名称',
|
|
dataIndex: 'name',
|
|
},
|
|
MyColumns.UpdatedAt(),
|
|
MyColumns.CreatedAt(),
|
|
MyColumns.Option({
|
|
render: (_, item: any, index, action) => (
|
|
<Space key={index}>
|
|
<Update item={item} reload={action?.reload} title={title} />
|
|
<MyButtons.Delete
|
|
onConfirm={() =>
|
|
Apis.Customer.CustomerMomentCategories.Delete({
|
|
id: item.id,
|
|
}).then(() => action?.reload())
|
|
}
|
|
/>
|
|
</Space>
|
|
),
|
|
}),
|
|
]}
|
|
/>
|
|
</MyPageContainer>
|
|
);
|
|
}
|