You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

41 lines
1.8 KiB

import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
import { ProTable } from '@ant-design/pro-components';
import { dateFormatter } from '@component/utils';
export default function () {
const columns = [
{
title: '服务对象',
dataIndex: 'name',
search: false,
},
{
title: '服务内容',
dataIndex: 'name',
search: false,
},
{
title: '服务机构',
dataIndex: 'name',
search: false,
},
{
title: '执行人',
dataIndex: 'name',
search: false,
},
{
title: '服务完成时间',
dataIndex: 'name',
search: false,
renderText: dateFormatter,
},
{
title: '回访评分',
dataIndex: 'name',
search: false,
},
];
return (_jsxs("div", Object.assign({ className: "page-content-detail-tabs" }, { children: [_jsxs("div", Object.assign({ style: { display: 'flex' } }, { children: [_jsxs("p", { children: [_jsx("span", Object.assign({ style: { fontSize: 16 } }, { children: "\u5BA2\u6237\u8BC4\u5206" })), _jsx("span", Object.assign({ style: { marginLeft: 10, fontSize: 32, fontWeight: 500 } }, { children: "5.0" }))] }), _jsxs("p", Object.assign({ style: { marginLeft: 20 } }, { children: [_jsx("span", Object.assign({ style: { fontSize: 16 } }, { children: "\u670D\u52A1\u6B21\u6570" })), _jsx("span", Object.assign({ style: { marginLeft: 10, fontSize: 32, fontWeight: 500 } }, { children: "3" }))] }))] })), _jsx(ProTable, { columns: columns, rowKey: "roleId", options: false, search: false, pagination: {
pageSize: 15,
} })] })));
}