This commit is contained in:
2025-12-30 13:47:53 +08:00
parent f1637501b2
commit a623c5673f
137 changed files with 11031 additions and 4043 deletions

35
klp-ui/src/api/hrm/cc.js Normal file
View File

@@ -0,0 +1,35 @@
import request from '@/utils/request'
// 查询抄送记录列表
export function listCc(query) {
return request({
url: '/hrm/flow/cc/my',
method: 'get',
params: query
})
}
// 标记抄送为已读
export function readCc(ccId) {
return request({
url: `/hrm/flow/cc/${ccId}/read`,
method: 'post'
})
}
// 手动抄送
export function addCc(data) {
return request({
url: '/hrm/flow/cc',
method: 'post',
data: data
})
}
// 查询抄送记录详细
export function getCc(ccId) {
return request({
url: `/hrm/flow/cc/${ccId}`,
method: 'get'
})
}