lkk
2025-01-08 f63b601eef7c0b0f33a3ccc8d599f8f21a62b529
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
    })
}