修改浙江无线测试用例bug

This commit is contained in:
GGJ
2024-12-17 20:57:07 +08:00
parent e10ca83ec5
commit 21831dda90
32 changed files with 873 additions and 254 deletions

View File

@@ -110,3 +110,11 @@ export function queryDictType(data?: any) {
params: data
})
}
//根据监测点id获取监测点详情
export function getById(data?: any) {
return createAxios({
url: '/cs-device-boot/csline/getById',
method: 'POST',
params: data
})
}

View File

@@ -85,3 +85,11 @@ export function delDevice(data: any) {
data
})
}
//方案数据-》根据测试项获取暂态事件
export function getEventByItem(data: any) {
return createAxios({
url: '/cs-harmonic-boot/data/getEventByItem',
method: 'POST',
params: data
})
}

View File

@@ -150,3 +150,11 @@ export const getAllUserSimpleList = () => {
method: 'GET'
})
}
export const getSysConfig =()=> {
return request({
url: "/system-boot/config/getSysConfig",
method: "get",
});
}