Files
fe-manage/src/api/indexLevel.js
2022-11-01 11:27:14 +08:00

8 lines
183 B
JavaScript

import http from "./config";
//新建或编辑关卡
export const editChapter = (obj) => http.post('/admin/router/editChapter', obj, {
headers: {
'token': '123'
}
});