tree.text 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .
  2. ├── README.md
  3. ├── config
  4. │   ├── config.dev.js
  5. │   ├── config.js
  6. │   ├── defaultSettings.js
  7. │   ├── oneapi.json
  8. │   ├── proxy.js
  9. │   └── routes.js
  10. ├── jest.config.js
  11. ├── jsconfig.json
  12. ├── package.json
  13. ├── src
  14. │   ├── access.js
  15. │   ├── app.jsx
  16. │   ├── components
  17. │   │   ├── CATable
  18. │   │   ├── CAUpload
  19. │   │   ├── Dialog
  20. │   │   ├── DrawerContent
  21. │   │   ├── Footer
  22. │   │   ├── HeaderDropdown
  23. │   │   ├── HeaderSearch
  24. │   │   ├── NoticeIcon
  25. │   │   ├── RightContent
  26. │   │   └── index.md
  27. │   ├── global.jsx
  28. │   ├── global.less
  29. │   ├── manifest.json
  30. │   ├── menuIcons.js
  31. │   ├── pages
  32. │   │   ├── 404.jsx
  33. │   │   ├── Admin.jsx
  34. │   │   ├── DepartmentMana
  35. │   │   ├── UserMana
  36. │   │   ├── Welcome.jsx
  37. │   │   ├── Welcome.less
  38. │   │   ├── accountingSubject
  39. │   │   ├── accountingSubjectConnect
  40. │   │   ├── apportionmentLevel
  41. │   │   ├── baseSetting
  42. │   │   ├── costAccounting
  43. │   │   ├── costAllocationParamsConnect
  44. │   │   ├── costAllocationParamsSetting
  45. │   │   ├── costProjectMana
  46. │   │   ├── document.ejs
  47. │   │   ├── platformMana
  48. │   │   ├── reportTableExport
  49. │   │   ├── responsibilityCenter
  50. │   │   ├── responsibilityCenterConnect
  51. │   │   └── user
  52. │   ├── projectConstant.js
  53. │   ├── service-worker.js
  54. │   ├── services
  55. │   │   ├── ant-design-pro
  56. │   │   ├── swagger
  57. │   │   └── user.js
  58. │   └── utils.js
  59. ├── tree.text
  60. └── yarn.lock
  61. 31 directories, 28 files