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.
14 lines
683 B
14 lines
683 B
import { jsx as _jsx } from "react/jsx-runtime"; |
|
import Form from './form'; |
|
import Record from './record'; |
|
import { getOrganVisit } from './action'; |
|
import { useRoutes } from '@component/utils'; |
|
export default function () { |
|
const { paramsParse } = useRoutes(); |
|
return (_jsx(Record, Object.assign({ service: getOrganVisit, params: { organId: paramsParse === null || paramsParse === void 0 ? void 0 : paramsParse.organId } }, { children: _jsx("div", Object.assign({ style: { |
|
width: '100%', |
|
display: 'flex', |
|
justifyContent: 'end', |
|
padding: '10px 10px 0 0 ', |
|
} }, { children: _jsx(Form, {}) })) }))); |
|
}
|
|
|