调整企业基础信息数据格式增加商品权证管理发型模块

This commit is contained in:
唐明明
2021-09-06 17:28:06 +08:00
parent 291c97eabc
commit f472df0cfa
17 changed files with 3242 additions and 1043 deletions

View File

@@ -0,0 +1,30 @@
/**
* Web唐明明
* 匆匆数载恍如梦,岁月迢迢华发增。
* 碌碌无为枉半生,一朝惊醒万事空。
* moduleName: 企业员工管理
*/
import { request } from '../index'
// 员工列表
const employees = () => {
return request({
url: 'companies/employees'
})
}
// 添加员工
const addEmployees = (data) => {
return request({
url: 'companies/employees',
method: 'POST',
data
})
}
export {
employees,
addEmployees
}