This commit is contained in:
lcw
2025-11-28 22:25:58 +08:00
parent 85f1f3a6f7
commit e2a54c16eb
90 changed files with 2451 additions and 511 deletions

View File

@ -86,3 +86,33 @@ export const yjzxSfyjSelectList = (params) => {
params
})
}
// 行为预警
export const yjzxXwyjSelectList = (id) => {
return request({
url: api + `/yjzxXwyj/${id}`,
method: "get",
})
}
// 身份预警详情
export const yjzxyjzxSfyjSelectList = (id) => {
return request({
url: api + `/yjzxSfyj/${id}`,
method: "get",
})
}
// 组合预警详情
export const yjzxZhyjSelectList = (id) => {
return request({
url: api + `/yjzxZhyj/${id}`,
method: "get",
})
}
// /tbYjxx/yjzp 预警指派
export const tbYjxxYjzp = (data) => {
return request({
url: api + `/tbYjxx/yjzp`,
method: "POST",
data
})
}