公章管理

This commit is contained in:
fz
2023-11-16 20:05:17 +08:00
parent b4dcc34dad
commit 61eec5a011
6 changed files with 362 additions and 18 deletions
+16
View File
@@ -25,3 +25,19 @@ export function selectDeptIndefiUrl(data) {
data: data
})
}
// 新增机构
export function insert(data) {
return request({
url: '/deptIdentify/insert',
method: 'post',
data: data
})
}
// 查询公章列表
export function sealList(data) {
return request({
url: '/deptIdentify/sealList',
method: 'get',
params: data
})
}