|
@ -1,7 +1,8 @@ |
|
|
import { Button, Checkbox, CheckboxProps, Radio, RadioChangeEvent } from "antd"; |
|
|
import { Button, Checkbox, CheckboxProps, Radio, RadioChangeEvent } from "antd"; |
|
|
import { useState } from "react"; |
|
|
import { useState } from "react"; |
|
|
import { useNavigate } from "react-router"; |
|
|
import { useNavigate } from "react-router"; |
|
|
import SectionalView from "./SectionalView"; |
|
|
|
|
|
|
|
|
import GridLayer from "./graph/GridLayer"; |
|
|
|
|
|
import StandardLayer from "./graph/StandardLayer"; |
|
|
|
|
|
|
|
|
export default function MeasureAction() { |
|
|
export default function MeasureAction() { |
|
|
const navigate = useNavigate(); |
|
|
const navigate = useNavigate(); |
|
@ -18,8 +19,11 @@ export default function MeasureAction() { |
|
|
}; |
|
|
}; |
|
|
return ( |
|
|
return ( |
|
|
<div className="flex h-full "> |
|
|
<div className="flex h-full "> |
|
|
<div className="flex-none border"> |
|
|
|
|
|
<SectionalView width={840} height={600} leftPadding={30} rightPadding={10} topPadding={10} bottomPadding={30} columns={10} rows={7} cellNum={10} /> |
|
|
|
|
|
|
|
|
<div className="flex-none border relative"> |
|
|
|
|
|
<GridLayer width={840} height={600} leftPadding={30} rightPadding={10} topPadding={10} bottomPadding={30} columns={10} rows={7} cellNum={10} /> |
|
|
|
|
|
<div className="absolute top-0"> |
|
|
|
|
|
<StandardLayer width={840} height={600} leftPadding={30} rightPadding={10} topPadding={10} bottomPadding={30} /> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<div className="w-[300px] flex-none py-6"> |
|
|
<div className="w-[300px] flex-none py-6"> |
|
|
<h1 className="font-medium text-xl text-center">测量步骤</h1> |
|
|
<h1 className="font-medium text-xl text-center">测量步骤</h1> |
|
|