menu.js 284 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
import { delReq, getReq, postReq } 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);
}