index.ts 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import { http } from "/@/utils/http";
  2. import { loadEnv } from "@build/index";
  3. const { VITE_PROXY_DOMAIN_REAL, VITE_PROXY_USER_REAL } = loadEnv();
  4. const userAPi = VITE_PROXY_DOMAIN_REAL;
  5. const yewuApi = VITE_PROXY_USER_REAL + "/admin/";
  6. interface ResponseType extends Promise<any> {
  7. data?: object;
  8. code?: number;
  9. message?: string;
  10. }
  11. // 添加
  12. export const httpAdd = (data: object): ResponseType => {
  13. return http.request("post", `${yewuApi}orderinvadd`, { data });
  14. };
  15. export const httpCreate = (data: object): ResponseType => {
  16. return http.request("post", `${yewuApi}ComonOrder/invAdd`, { data });
  17. };
  18. // 列表
  19. export const httpList = (data: object): ResponseType => {
  20. return http.request("post", `${yewuApi}orderinvlist`, { data });
  21. };
  22. // 详情
  23. export const httpDetail = (data: object): ResponseType => {
  24. return http.request("post", `${yewuApi}orderinvinfo`, { data });
  25. };
  26. // 状态
  27. export const httpStatus = (data: object): ResponseType => {
  28. return http.request("post", `${yewuApi}orderinvstatus`, { data });
  29. };
  30. // 订单列表
  31. export const httpOrderList = (data: object): ResponseType => {
  32. return http.request("post", `${yewuApi}orderlist`, { data });
  33. };
  34. export const httpBatchOrderList = (data: object): ResponseType => {
  35. return http.request("post", `${yewuApi}orderquery`, { data });
  36. };
  37. //设置物流
  38. export const httpSetPost = (data: object): ResponseType => {
  39. return http.request("post", `${yewuApi}invsetpost`, { data });
  40. };
  41. //
  42. export const httpInvoiceList = (data: object): ResponseType => {
  43. return http.request("post", `${yewuApi}supplierlist`, { data });
  44. };
  45. export const httpCompanyList = (data: object): ResponseType => {
  46. return http.request("post", `${yewuApi}companylist`, { data });
  47. };
  48. export const httpUpload = (data: object): ResponseType => {
  49. return http.request("post", `${yewuApi}orderinvimport`, { data });
  50. };
  51. export const httpBatchApproval = (data: object): ResponseType => {
  52. return http.request("post", `${yewuApi}orderinvbatch`, { data });
  53. };
  54. export const httpBack = (data: object): any => {
  55. return http.request("post", `${yewuApi}ticketedit`, { data });
  56. };