This commit is contained in:
van
2026-04-11 22:35:42 +08:00
parent 124af53209
commit cd5c49762a
3 changed files with 158 additions and 9 deletions

View File

@@ -14,4 +14,20 @@ export function getHealth() {
url: '/monitor/server/health',
method: 'get'
})
}
// 手动测试微信推送(会真实下发一条消息)
export function triggerWxSendHealthTest() {
return request({
url: '/monitor/server/health/wx-send-test',
method: 'post'
})
}
// 手动测试企微闲鱼通知(经 wxSend goofish-active-push
export function triggerGoofishNotifyTest() {
return request({
url: '/monitor/server/health/goofish-notify-test',
method: 'post'
})
}