案件提交后案件信息修改与撤销

This commit is contained in:
Your Name
2023-11-23 19:27:22 +08:00
parent 4cb035dcc8
commit 9bcda9e122
3 changed files with 1321 additions and 8 deletions
+26
View File
@@ -105,3 +105,29 @@ export function logistics(data) {
params: data,
})
}
// 申请人撤销修改
export function revoke(data) {
return request({
url: "/caseApplicationLog/revoke",
method: "post",
data: data,
})
}
// 秘书审核修改
export function updateAudit(data) {
return request({
url: "/caseApplicationLog/updateAudit",
method: "post",
data: data,
})
}
// 查询案件对比信息
export function selectCompareCase(data) {
return request({
url: "/caseApplicationLog/selectCompareCase",
method: "post",
data: data,
})
}