index.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import HttpService from "./request";
  2. export const handle = ({url, params, method,config,filName}: any) => {
  3. const httpService = new HttpService()
  4. // @ts-ignore
  5. return httpService[method.toLowerCase()](url, params,config,filName)
  6. }
  7. // @ts-ignore
  8. const files = import.meta.glob("/src/api/modules/**/*.ts")
  9. const apiModule: any = {}
  10. const apiRepeatMap = new Map()
  11. let num1 = 0
  12. let num2 = 0
  13. for (const [key, value] of Object.entries(files)) {
  14. num1++
  15. // @ts-ignore
  16. value().then(res => {
  17. for (const [apiKey, apiValue] of Object.entries(res)) {
  18. if (apiKey !== '__tla') { // 过滤掉内部属性,非业务
  19. if (apiRepeatMap.has(apiKey)) {
  20. apiRepeatMap.set(apiKey, [...apiRepeatMap.get(apiKey), key])
  21. } else {
  22. apiRepeatMap.set(apiKey, [key])
  23. }
  24. }
  25. }
  26. Object.assign(apiModule, res)
  27. num2++
  28. if (num1 === num2) {
  29. apiRepeatMap.forEach((v, k) => {
  30. if (v.length > 1) {
  31. console.error(`检测到接口${k}重复定义,路径为:`, v)
  32. }
  33. })
  34. }
  35. })
  36. }
  37. export default apiModule