评估申请信息发送到钉钉联调

This commit is contained in:
zhonghua.li
2026-05-15 18:22:29 +08:00
parent 212adfb6c4
commit e980376297
2 changed files with 153 additions and 1 deletions

View File

@@ -50,3 +50,21 @@ export function exportLbAssessmentApply(params) {
responseType: 'blob'
})
}
/** 根据租户ID与记录ID生成评估会议通知文案 */
export function getLbAssessmentApplyNotificationText(params) {
return request({
url: '/lbAssessmentApply/notificationText',
method: 'get',
params
})
}
/** 发送评估会议通知到钉钉群 */
export function sendLbAssessmentApplyNotificationToDingTalk(params) {
return request({
url: '/lbAssessmentApply/sendNotificationToDingTalk',
method: 'post',
params
})
}