公章管理

This commit is contained in:
fz
2023-11-17 17:53:03 +08:00
parent efde41565e
commit 293c5e76d0
6 changed files with 247 additions and 43 deletions
+24
View File
@@ -41,3 +41,27 @@ export function sealList(data) {
params: data
})
}
// 启用或者禁用公章
export function updateSealLockStatus(data) {
return request({
url: '/deptIdentify/updateSealLockStatus',
method: 'post',
data: data
})
}
// 删除未认证的数据
export function deleteSeal(data) {
return request({
url: '/deptIdentify/delete',
method: 'delete',
params: data
})
}
// 修改机构信息
export function sealUpdate(data) {
return request({
url: '/deptIdentify/update',
method: 'put',
data: data
})
}