合并
This commit is contained in:
@@ -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,
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user