potal二期接口

This commit is contained in:
86182
2022-09-06 15:42:11 +08:00
parent 0b7a8a85ea
commit fd52e4e99a
4 changed files with 144 additions and 0 deletions

22
src/api/modules/guide.js Normal file
View File

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