index.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. import report from "./report";
  2. import template from "./template";
  3. import custom from "./custom";
  4. import field from "./field";
  5. import data from "./data";
  6. // import common from "./common";
  7. import oauth2 from "./oauth2";
  8. // import project from "./project";
  9. import download from "./download";
  10. import client from "./client";
  11. import user from "./user";
  12. import task from "./task";
  13. // import patent from "./patent";
  14. import admin from "./admin";
  15. import permission from "./permission";
  16. import reportManage from "./reportManage";
  17. // import product from "./product";
  18. import quartz from './quartz';
  19. import highlight from './highlight';
  20. import matters from './matters';
  21. import importPatent from './importPatent'
  22. import InvalidResponse from "./InvalidResponse";
  23. // 新系统新接口文件
  24. import event from "./newApi/event";
  25. import product from "./newApi/product";
  26. import framework from "./newApi/framework";
  27. import file from "./newApi/file"
  28. import project from "./newApi/project"
  29. import common from "./newApi/common"
  30. import newReport from "./newApi/report"
  31. import patentMining from "./newApi/patentMining"
  32. import task2 from "./newApi/task"
  33. import importAndExport from './newApi/importAndExport'
  34. import patent from './newApi/patent'
  35. export default {
  36. ...report,
  37. ...template,
  38. ...custom,
  39. ...field,
  40. ...data,
  41. ...oauth2,
  42. ...project,
  43. ...download,
  44. ...client,
  45. ...user,
  46. ...task,
  47. ...patent,
  48. ...common,
  49. ...admin,
  50. ...permission,
  51. ...reportManage,
  52. ...product,
  53. ...quartz,
  54. ...importPatent,
  55. ...highlight,
  56. ...matters,
  57. ...InvalidResponse,
  58. ...event,
  59. ...product,
  60. ...framework,
  61. ...file,
  62. ...project,
  63. ...common,
  64. ...newReport,
  65. ...patentMining,
  66. ...task2,
  67. ...importAndExport,
  68. ...patent
  69. }