import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { PageContainer } from '@ant-design/pro-components'; import { Tabs } from 'antd'; import ServiceApplyInfo from './service.apply.Info'; import Record from './record'; import { useRoutes } from '@component/utils'; import { getRecord } from './action'; export default function ({ serviceUrl }) { const { paramsParse } = useRoutes(); return (_jsx(PageContainer, Object.assign({ header: { title: null, } }, { children: _jsxs(Tabs, { children: [_jsx(Tabs.TabPane, Object.assign({ tab: "\u670D\u52A1\u7533\u8BF7\u4FE1\u606F" }, { children: _jsx(ServiceApplyInfo, { params: paramsParse, serviceUrl: serviceUrl }) }), "1"), _jsx(Tabs.TabPane, Object.assign({ tab: "\u7533\u8BF7\u8BB0\u5F55" }, { children: _jsx("div", Object.assign({ className: "page-content-detail-tabs" }, { children: _jsx(Record, { service: getRecord, params: paramsParse }) })) }), "2")] }) }))); }