diff --git a/src/api/modules/guide.js b/src/api/modules/guide.js index 18ae4eeb..1308d9bb 100644 --- a/src/api/modules/guide.js +++ b/src/api/modules/guide.js @@ -11,12 +11,12 @@ const list=function (){ /** * 保存或编辑 * */ -const saveOrUpdate=function (data){ - return ajax.postJson('/xboe/subgroup/m/guide/saveOrUpdate',data); +const save=function (data){ + return ajax.postJson('/xboe/subgroup/m/guide/save',data); } export default { list, - saveOrUpdate + save }