This commit is contained in:
hanchaobo
2024-02-05 18:22:21 +08:00
11 changed files with 2069 additions and 1829 deletions
+35
View File
@@ -85,4 +85,39 @@ export function queryCaseFlowInfo(data) {
method: 'post',
data: data
})
}
// 根据机构id查询模板
export function getTemplate(data) {
return request({
url: `/deptIdentify/getTemplate`,
method: 'get',
params: data
})
}
// 根据身份证获取生日和性别
export function getInfoByIdCard(query) {
return request({
url: '/caseApplication/getInfoByIdCard',
method: 'get',
params: query
})
}
/** 新增案件 */
export function caseApplicationInsert(data) {
return request({
url: '/caseApplication/insert',
method: 'post',
data: data
})
}
// 修改立案申请接口
export function updateComfire(data) {
return request({
url: "/caseApplication/update",
method: "post",
data: data,
})
}