录波数据查询

This commit is contained in:
sjl
2025-09-09 09:14:42 +08:00
parent 4cd6302ee0
commit d7cfe665e2
3 changed files with 180 additions and 17 deletions

View File

@@ -74,6 +74,7 @@ export const reCalculate = (params: {
deviceId: string
code: string
patternId: string
}) => {
return http.post('/result/reCalculate', params, {loading: true})
}
@@ -87,6 +88,8 @@ export const getContrastFormContent = (params: {
deviceId: string
chnNum: string
num: number | null
// waveNum: number | null
// isWave: boolean
}) => {
return http.post('/result/getContrastFormContent', params, {loading: false})
}
@@ -100,6 +103,8 @@ export const getContrastResult = (params: {
deviceId: string
chnNum: string | number
num: number | string | null
waveNum: number | null
isWave: boolean
}) => {
return http.post('/result/getContrastResult', params, {loading: true})
}