案件归档,审核修改tab,修改bug,模板字段接口联调

This commit is contained in:
gyj
2023-12-11 18:24:31 +08:00
parent ade16242d0
commit 91a0a4ec9c
10 changed files with 146 additions and 80 deletions
+9 -1
View File
@@ -19,4 +19,12 @@ export function videoList(data) {
method: 'get',
params: data
})
}
}
// 下载案件压缩包
export function downloadCaseZipFile(data) {
return request({
url: '/caseApplication/downloadCaseZipFile',
method: 'post',
data: data
})
}
+8
View File
@@ -160,4 +160,12 @@ export function saveFatchRules(data) {
method: 'post',
data: data
})
}
// 模板字段列表
export function getTemplateInfoById(data) {
return request({
url: '/deptIdentify/getTemplateInfoById',
method: 'get',
params: data
})
}