1
wwl
2025-06-10 cee2eca9c3e40b48c40a8fe80f938a777f03d463
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
    })
}