organization.js 536 Bytes
Newer Older
陈浩玮's avatar
陈浩玮 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
import { delReq, getReq, postReq, putReq } from '@/utils';

// export function delMenuApi(id) {
//     return delReq(`/api/v1/menus/${id}`);
// }

// export function getMenuDataApi() {
//     return getReq('/api/v1/menus');
// }

// export function addMenuApi(data) {
//     return postReq('/api/v1/menus', data);
// }

function addJobsApi(data) {
    return postReq('/api/v1/jobs', data);
}

function updateJobsApi(data) {
    return putReq('/api/v1/jobs', data);
}

export default {
    add: addJobsApi,
    update: updateJobsApi,
};