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.
13 lines
960 B
13 lines
960 B
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")] }) }))); |
|
}
|
|
|