Files
learning-system-portal/src/api/modules/guide.js
2022-09-07 16:53:14 +08:00

24 lines
352 B
JavaScript

// import ajax from '@/utils/xajax.js'
import ajax from '../cesource/index.js';
/**
* 显示提取,一次性
* */
const list=function (){
return ajax.get('/xboe/subgroup/m/guide/list');
}
/**
* 保存或编辑
* */
const save=function (data){
return ajax.postJson('/xboe/subgroup/m/guide/save',data);
}
export default {
list,
save
}