task.js 215 Bytes
Newer Older
水落(YangLei)'s avatar
水落(YangLei) committed
1 2 3 4 5 6 7 8 9
import { postReq, putReq } from '@/utils';

export function addTaskApi(data) {
    return postReq('/api/v1/schedules', data);
}

export function updateTaskApi(data) {
    return putReq('/api/v1/schedules', data);
}