zouyu
2025-03-19 45792b3776cda2e1ada31755ffc226a663f90b48
src/api/chart/dailyBusinessStatistical.js
@@ -23,4 +23,31 @@
        method: 'post',
        params: params
    })
}
}
//添加日程
export function addSchedule(data) {
    return resquest({
        url: '/report/addSchedule',
        method: 'post',
        params: data
    })
}
//查询日历任务图
export function calendarWorkByWeek() {
    return resquest({
        url: '/report/calendarWorkByWeek',
        method: 'get',
    })
}
//查询日历任务图
export function ScheduleByMe(data) {
    return resquest({
        url: '/report/ScheduleByMe',
        method: 'post',
        params:data
    })
}