二次查询接口

This commit is contained in:
86182
2022-09-20 11:42:20 +08:00
parent 2626fe7fa2
commit 44253f06f0
5 changed files with 61 additions and 7 deletions

View File

@@ -93,6 +93,16 @@ const restore=function (id){
return ajax.get(baseURL,'/xboe/subgroup/m/noteinfo/restore?id='+id);
}
/**
* 二次查询
* @param{
* ids
* }
* */
const ids=function (data){
return ajax.postJson('/xboe/subgroup/m/noteinfo/ids',data);
}
export default {
save,
detail,
@@ -104,5 +114,6 @@ export default {
query,
course,
update,
restore
restore,
ids
}