2
lkk
2025-04-11 9314d8cdd5e7a29f1061f59cccd7cce17b7fef3b
src/api/hosp/teamAppLog.js
@@ -42,3 +42,30 @@
        method: 'delete'
    })
}
// 查询团队预约沟通记录列表
export function goutongList(id) {
    return request({
        url: '/hosp/TjTeamContactLog/list',
        method: 'get',
        id: id
    })
}
// 获取团队预约沟通记录详细信息
export function TjTeamContactLog(id) {
    return request({
        url: '/hosp/TjTeamContactLog/' + id,
        method: 'get'
    })
}
// 新增团队预约沟通记录
export function TjTeamContac(data) {
    return request({
        url: '/hosp/TjTeamContactLog',
        method: 'post',
        data: data
    })
}