增加userbasic

This commit is contained in:
daihh
2022-11-15 21:53:24 +08:00
parent 0999553fe6
commit 9cfbeb4e8f
2 changed files with 18 additions and 1 deletions

17
src/api/boe/userbasic.js Normal file
View File

@@ -0,0 +1,17 @@
import ajax from '../ajax';
//const baseURL = process.env.VUE_APP_CESOURCE_BASE_API;
const baseURL ="userbasic";
/**
* 获取用户的组织机构
* organization_id
*/
const userParentOrg = function() {
return ajax.post(baseURL,'/org/userParentOrg',{});
}
export default {
userParentOrg
}