78 lines
3.0 KiB
JavaScript
78 lines
3.0 KiB
JavaScript
import { jsxs as _jsxs, jsx as _jsx } from "react/jsx-runtime";
|
|
import { Table, Space, Typography } from 'antd';
|
|
import dayjs from 'dayjs';
|
|
export default function render(props) {
|
|
const { oakPagination, oakFullpath, list = [], oakLoading, } = props.data;
|
|
const { pageSize, total, currentPage } = oakPagination || {};
|
|
const { t, setPageSize, setCurrentPage } = props.methods;
|
|
return (_jsx(Table, { loading: oakLoading, dataSource: list, rowKey: "id", columns: [
|
|
{
|
|
dataIndex: 'id',
|
|
title: '#',
|
|
render: (value, record, index) => {
|
|
return index + 1;
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'name',
|
|
title: '授权人',
|
|
render: (value, record, index) => {
|
|
return (_jsxs(Space, { direction: "vertical", children: [_jsxs(Typography.Text, { children: ["\u59D3\u540D\uFF1A", record.granter?.name || '-'] }), _jsxs(Typography.Text, { children: ["\u6635\u79F0\uFF1A", record.granter?.nickname] })] }));
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'number',
|
|
title: '邀请成员数',
|
|
render: (value, record, index) => {
|
|
return `${value || 0}人`;
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'confirmed',
|
|
title: '加入成员数',
|
|
render: (value, record, index) => {
|
|
return `${value || 0}人`;
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'type',
|
|
title: '授权类型',
|
|
render: (value, record, index) => {
|
|
return t(`userEntityGrant:v.type.${value}`);
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'relation',
|
|
title: '权限',
|
|
render: (value, record, index) => {
|
|
return (value.display ||
|
|
t(`${record.entity}:r.${value.name}`));
|
|
},
|
|
},
|
|
{
|
|
dataIndex: '$$createAt$$',
|
|
title: '创建时间',
|
|
render: (value, record, index) => {
|
|
return dayjs(value).format('YYYY-MM-DD HH:mm');
|
|
},
|
|
},
|
|
{
|
|
dataIndex: 'expired',
|
|
title: '状态',
|
|
render: (value, record, index) => {
|
|
return (_jsxs(Typography.Text, { type: record.expired ? 'danger' : 'success', children: [record.expired ? '失效' : '有效', !record.expired && (_jsxs(Typography.Text, { children: ["\u00A0", dayjs(record.expiresAt).format('YYYY-MM-DD HH:mm')] }))] }));
|
|
},
|
|
},
|
|
], pagination: {
|
|
total,
|
|
pageSize,
|
|
current: currentPage,
|
|
onShowSizeChange: (pageSize) => {
|
|
setPageSize(pageSize);
|
|
},
|
|
onChange: (current) => {
|
|
setCurrentPage(current);
|
|
},
|
|
} }));
|
|
}
|