index.js 659 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * @Author: daidai
  3. * @Date: 2021-12-09 10:47:56
  4. * @LastEditors: Please set LastEditors
  5. * @LastEditTime: 2022-04-27 16:32:31
  6. * @FilePath: \web-pc\src\api\index.js
  7. */
  8. import { currentList,
  9. currentPage,
  10. currentSave,
  11. currentUpdate,
  12. currentDelete,
  13. currentSelect,
  14. currentSelectList,
  15. currentPOST,
  16. currentGET,
  17. currentApi
  18. } from './modules'
  19. import {
  20. GETNOBASE,
  21. GET
  22. } from './api'
  23. export {
  24. GETNOBASE,
  25. GET
  26. }
  27. export {
  28. currentApi,
  29. currentList,
  30. currentPage,
  31. currentSave,
  32. currentUpdate,
  33. currentDelete,
  34. currentSelect,
  35. currentSelectList,
  36. currentPOST,
  37. currentGET
  38. }