es.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import { defineStore } from 'pinia'
  2. import { AxiosWrapper } from '@/utils/axios-wrapper'
  3. const axios = new AxiosWrapper({ baseUrl: import.meta.env.VITE_APP_ES_API })
  4. export const EsStore = defineStore('es', () => {
  5. const demand = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  6. let cond = {}
  7. if (skip) cond.skip = skip
  8. if (limit) cond.limit = limit
  9. cond = { ...cond, ...info }
  10. const res = await axios.$get(`/am/demand`, cond)
  11. return res
  12. }
  13. const achievement = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  14. let cond = {}
  15. if (skip) cond.skip = skip
  16. if (limit) cond.limit = limit
  17. cond = { ...cond, ...info }
  18. const res = await axios.$get(`/am/achievement`, cond)
  19. return res
  20. }
  21. const supply = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  22. let cond = {}
  23. if (skip) cond.skip = skip
  24. if (limit) cond.limit = limit
  25. cond = { ...cond, ...info }
  26. const res = await axios.$get(`/am/supply`, cond)
  27. return res
  28. }
  29. const Scompany = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  30. let cond = {}
  31. if (skip) cond.skip = skip
  32. if (limit) cond.limit = limit
  33. cond = { ...cond, ...info }
  34. const res = await axios.$get(`/search/company`, cond)
  35. return res
  36. }
  37. const Sproject = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  38. let cond = {}
  39. if (skip) cond.skip = skip
  40. if (limit) cond.limit = limit
  41. cond = { ...cond, ...info }
  42. const res = await axios.$get(`/search/project`, cond)
  43. return res
  44. }
  45. const Sdemand = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  46. let cond = {}
  47. if (skip) cond.skip = skip
  48. if (limit) cond.limit = limit
  49. cond = { ...cond, ...info }
  50. const res = await axios.$get(`/search/demand`, cond)
  51. return res
  52. }
  53. const Ssupply = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  54. let cond = {}
  55. if (skip) cond.skip = skip
  56. if (limit) cond.limit = limit
  57. cond = { ...cond, ...info }
  58. const res = await axios.$get(`/search/supply`, cond)
  59. return res
  60. }
  61. const Sachievement = async ({ skip = 0, limit = undefined, ...info } = {}) => {
  62. let cond = {}
  63. if (skip) cond.skip = skip
  64. if (limit) cond.limit = limit
  65. cond = { ...cond, ...info }
  66. const res = await axios.$get(`/search/achievement`, cond)
  67. return res
  68. }
  69. return { supply, demand, achievement, Scompany, Sproject, Sdemand, Ssupply, Sachievement }
  70. })