feat : 新增子公司和部门界面

This commit is contained in:
2024-03-18 15:25:31 +08:00
parent 1db444e87c
commit bcb0509978
7 changed files with 167 additions and 8 deletions

View File

@@ -0,0 +1,16 @@
import request from "@/utils/request.js";
export const getSubCompanyList=(params)=>{
return request({
url:'/admin/mosr/sub/company',
method:'get',
params
})
}
export const getDepartmentList=(params)=>{
return request({
url:'/admin/mosr/department',
method:'get',
params
})
}