This commit is contained in:
gyj
2024-02-05 13:52:55 +08:00
parent accf8e8c3f
commit decd8e6edb
10 changed files with 2068 additions and 1828 deletions
+35
View File
@@ -77,4 +77,39 @@ export function updateBooking(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,
})
}