| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { http } from '@/api/http'
- import { httpErrorHandle } from '@/utils'
- import { ContentTypeEnum, RequestHttpEnum, ModuleTypeEnum } from '@/enums/httpEnum'
- import { ProjectItem, ProejctDetail } from './project'
- // * 项目列表
- export const projectListApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.GET)<ProjectItem[]>(`${ModuleTypeEnum.PROJECT}/list`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 新增项目
- export const createProjectApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.POST)<{
- /**
- * 项目id
- */
- id: number
- }>(`${ModuleTypeEnum.PROJECT}/create`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 获取项目
- export const fetchProjectApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.GET)<ProejctDetail>(`${ModuleTypeEnum.PROJECT}/getData`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 保存项目
- export const saveProjectApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.POST)(
- `${ModuleTypeEnum.PROJECT}/save/data`,
- data,
- ContentTypeEnum.FORM_URLENCODED
- )
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 修改项目基础信息
- export const updateProjectApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.POST)(`${ModuleTypeEnum.PROJECT}/edit`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 删除项目
- export const deleteProjectApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.DELETE)(`${ModuleTypeEnum.PROJECT}/delete`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 修改发布状态 [-1未发布,1发布]
- export const changeProjectReleaseApi = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.PUT)(`${ModuleTypeEnum.PROJECT}/publish`, data)
- return res
- } catch {
- httpErrorHandle()
- }
- }
- // * 上传文件
- export const uploadFile = async (data: object) => {
- try {
- const res = await http(RequestHttpEnum.POST)<{
- /**
- * 文件地址
- */
- fileName: string
- }>(`${ModuleTypeEnum.PROJECT}/upload`, data, ContentTypeEnum.FORM_DATA)
- return res
- } catch {
- httpErrorHandle()
- }
- }
|