This commit is contained in:
2023-05-05 09:40:23 +08:00
parent 9a14b99b18
commit 054e739905
25 changed files with 1684 additions and 1480 deletions

53
src/api/zs/officeSign.js Normal file
View File

@@ -0,0 +1,53 @@
import request from '@/utils/request'
// 查询报名点成交登记列表
export function listSign(query) {
return request({
url: '/zs/officesign/list',
method: 'get',
params: query
})
}
// 查询报名点成交登记详细
export function getSign(officesignId) {
return request({
url: '/zs/officesign/' + officesignId,
method: 'get'
})
}
// 新增报名点成交登记
export function addSign(data) {
return request({
url: '/zs/officesign',
method: 'post',
data: data
})
}
// 修改报名点成交登记
export function updateSign(data) {
return request({
url: '/zs/officesign',
method: 'put',
data: data
})
}
// 删除报名点成交登记
export function delSign(officesignId) {
return request({
url: '/zs/officesign/' + officesignId,
method: 'delete'
})
}
//审核登记
export function checkSign(data) {
return request({
url: '/zs/officesign/check',
method: 'put',
data: data
})
}