YNUtdPlatform/api/workPlan/riskDay.js

43 lines
888 B
JavaScript
Raw Normal View History

2024-11-01 18:15:33 +08:00
import request_yn from '@/utils/request_new_yn'
// 获取风险点
export function getDayRiskApi(data) {
return request_yn({
url: '/ynPlanApp/scene/getRiskPoints',
method: 'post',
data: data
})
}
2024-11-03 14:42:17 +08:00
// 获取风险点
export function getTodayRiskApi(data) {
return request_yn({
url: '/ynPlanApp/scene/getriskNum',
method: 'post',
data: data
})
}
2024-11-01 18:15:33 +08:00
// 风险提交
export function setRiskSubmitApi(data) {
return request_yn({
url: '/ynPlanApp/scene/upSceneData',
method: 'post',
data: data
})
}
2024-11-03 14:42:17 +08:00
// 获取风险详情列表
2024-11-01 18:15:33 +08:00
export function getMySceneListApi(data) {
return request_yn({
url: '/ynPlanApp/scene/getMySceneList',
method: 'post',
data: data
})
}
2024-11-03 14:42:17 +08:00
// 获取风险详情
export function getMySceneDataApi(data) {
return request_yn({
url: '/ynPlanApp/scene/getMySceneData',
method: 'post',
data: data
})
}