医生排班日期的正确插入

This commit is contained in:
HuangXinQuan
2026-02-05 16:00:56 +08:00
parent 74892ea80f
commit f69de5e78f
8 changed files with 161 additions and 6 deletions

View File

@@ -25,6 +25,15 @@ export function addDoctorSchedule(data) {
})
}
// 添加医生排班(带具体日期)
export function addDoctorScheduleWithDate(data) {
return request({
url: '/appointment/doctor-schedule/add-with-date',
method: 'post',
data: data
})
}
// 更新医生排班
export function updateDoctorSchedule(data) {
return request({