This commit is contained in:
Your Name
2023-11-16 20:07:50 +08:00
5 changed files with 360 additions and 16 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
})
}