2022-05-20 16:12:27 +08:00
|
|
|
import { http } from '@/api/http'
|
|
|
|
import { httpErrorHandle } from '@/utils'
|
|
|
|
import { RequestHttpEnum, ModuleTypeEnum } from '@/enums/httpEnum'
|
|
|
|
|
2022-05-22 14:05:57 +08:00
|
|
|
// * 项目列表
|
|
|
|
export const projectListApi = async (data: object) => {
|
|
|
|
try {
|
|
|
|
const res = await http(RequestHttpEnum.GET)(`${ModuleTypeEnum.PROJECT}/list`, data);
|
|
|
|
return res;
|
|
|
|
} catch {
|
|
|
|
httpErrorHandle();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-21 17:31:01 +08:00
|
|
|
// * 新增项目
|
|
|
|
export const createProjectApi = async (data: object) => {
|
|
|
|
try {
|
2022-05-21 18:03:15 +08:00
|
|
|
const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.PROJECT}/create`, data);
|
2022-05-20 16:12:27 +08:00
|
|
|
return res;
|
|
|
|
} catch {
|
|
|
|
httpErrorHandle();
|
|
|
|
}
|
|
|
|
}
|