公章,批量缴费

This commit is contained in:
fz
2023-11-23 20:07:01 +08:00
parent f512868759
commit 68d600c0e5
12 changed files with 484 additions and 119 deletions
+16
View File
@@ -96,4 +96,20 @@ export function getTemplate(data) {
method: 'get',
params: data
})
}
// 查询机构下的经办人
export function selectPostUserByDeptId(data) {
return request({
url: '/deptIdentify/selectPostUserByDeptId',
method: 'get',
params: data
})
}
// 机构绑定经办人
export function bindHandler(data) {
return request({
url: '/deptIdentify/bindHandler',
method: 'get',
params: data
})
}
+10 -1
View File
@@ -65,4 +65,13 @@ export function confirmPayDig(data) {
method: 'post',
data: data
})
}
}
// 查询批量缴费信息
// 缴费页面缴费确认
export function getPayDetail(params) {
return request({
url: '/pay/list',
method: 'get',
params: params
})
}