import { ArrowLeft, Eye } from "lucide-react"; import { useNavigate } from "react-router"; import { useState } from "react"; export default function ParameterConfiguration() { const navigate = useNavigate(); const [transmissionVoltage, setTransmissionVoltage] = useState("1500V"); const [transmissionCurrent, setTransmissionCurrent] = useState("10A"); const [pulseWidthOptions] = useState([ { value: "0.25s", checked: true }, { value: "0.5s", checked: true }, { value: "1s", checked: true }, { value: "2s", checked: true }, { value: "4s", checked: true }, { value: "8s", checked: true }, { value: "16s", checked: true }, { value: "32s", checked: true }, { value: "64s", checked: true }, ]); const [waveformOptions] = useState([ { value: "0+0-", checked: true }, { value: "+0-0", checked: true }, { value: "+-", checked: true }, ]); const [samplingRateOptions] = useState([ { value: "50Hz", checked: true }, { value: "60Hz", checked: true }, { value: "100Hz", checked: true }, { value: "1000Hz", checked: true }, ]); return (
{/* Page Header */}

参数配置

配置设备型号的详细参数

{/* Model Info Card */}

型号信息

适配型号
GD30 地质探测仪
当前配置版本
v1.2.0
最后更新时间
2024-03-01 10:30
{/* Transmission Parameters Card */}

发射参数

{pulseWidthOptions.map((option) => ( ))}
{waveformOptions.map((option) => ( ))}
{/* Acquisition Parameters Card */}

采集参数

{samplingRateOptions.map((option) => ( ))}
-
{/* Network Parameters Card */}

网络参数

{/* Action Bar */}
); }