import http from '@/http/api.js'
|
|
//新增护学打卡
|
export const addClockIn = (data) => {
|
return http.request({
|
url: '/blade-nursingCheckIn/nursingCheckIn/save',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
//新增隐患、矛盾报事
|
export const addTroubleReport = (data) => {
|
return http.request({
|
url: '/blade-taskSchoolEven/taskSchoolEven/save',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
//隐患、矛盾报事列表
|
export const getTroubleReportList = (params) => {
|
return http.request({
|
url: '/blade-taskSchoolEven/taskSchoolEven/page',
|
method: 'get',
|
params: {
|
...params
|
}
|
})
|
}
|
|
//隐患、矛盾报事详情
|
export const getTroubleReportDetail = (params) => {
|
return http.request({
|
url: '/blade-taskSchoolEven/taskSchoolEven/detail',
|
method: 'get',
|
params: {
|
...params
|
}
|
})
|
}
|
|
//审核隐患、矛盾报事详情
|
export const auditTroubleReport = (data) => {
|
return http.request({
|
url: '/blade-taskSchoolEven/taskSchoolEven/auditing',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
|
|
//添加居住证申请
|
export const saveResideApply = (data) => {
|
return http.request({
|
url: '/blade-taskResidencePermitApply/taskResidencePermitApply/save',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
//编辑居住证申请
|
export const updateResideApply = (data) => {
|
return http.request({
|
url: '/blade-taskResidencePermitApply/taskResidencePermitApply/update',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
|
|
|
//获取居住证申请详情
|
export const getResideApplyDetail = (params) => {
|
return http.request({
|
url: '/blade-taskResidencePermitApply/taskResidencePermitApply/detail',
|
method: 'get',
|
params: {
|
...params
|
}
|
})
|
}
|
|
|
//审核居住证申请
|
export const auditResideApply = (data) => {
|
return http.request({
|
url: '/blade-taskResidencePermitApply/taskResidencePermitApply/auditing',
|
method: 'POST',
|
data: data
|
})
|
}
|
|
|
//获取居住证申请提交记录列表
|
export const getResideApplyRecord = (params) => {
|
return http.request({
|
url: '/blade-taskResidencePermitApply/taskResidencePermitApply/list',
|
method: 'get',
|
params: {
|
...params
|
}
|
})
|
}
|