|
@@ -472,12 +472,12 @@ export const getDeviceListSimple = async (deviceId: number) => {
|
|
|
return data;
|
|
|
};
|
|
|
|
|
|
-export const getDeviceParams = async (deviceId: number, isProcessonData?: boolean) => {
|
|
|
+export const getDeviceParams = async (deviceId: number, isProcessData?: boolean) => {
|
|
|
const data = await request<DeviceParamGroup[]>(apiBiz('/device/protocolParamVerify'), {
|
|
|
method: 'POST',
|
|
|
body: JSON.stringify({
|
|
|
deviceId,
|
|
|
- isProcessonData,
|
|
|
+ isProcessData,
|
|
|
}),
|
|
|
});
|
|
|
|