This commit is contained in:
86182
2022-09-15 18:27:26 +08:00
parent 2c6c545012
commit 32b1206737

View File

@@ -12,6 +12,14 @@ const save=function (data){
return ajax.postJson(baseURL,'/xboe/subgroup/m/noteinfo/save',data);
}
/**
* 添加或者编辑
* @param 参数见设计文档
* */
const update=function (data){
return ajax.postJson(baseURL,'/xboe/subgroup/m/noteinfo/update',data);
}
/**
* 详情
* */
@@ -87,5 +95,6 @@ export default {
history,
pagelist,
query,
course
course,
update
}