. ├── README.md ├── config │   ├── config.dev.js │   ├── config.js │   ├── defaultSettings.js │   ├── oneapi.json │   ├── proxy.js │   └── routes.js ├── jest.config.js ├── jsconfig.json ├── package.json ├── src │   ├── access.js │   ├── app.jsx │   ├── components │   │   ├── CATable │   │   ├── CAUpload │   │   ├── Dialog │   │   ├── DrawerContent │   │   ├── Footer │   │   ├── HeaderDropdown │   │   ├── HeaderSearch │   │   ├── NoticeIcon │   │   ├── RightContent │   │   └── index.md │   ├── global.jsx │   ├── global.less │   ├── manifest.json │   ├── menuIcons.js │   ├── pages │   │   ├── 404.jsx │   │   ├── Admin.jsx │   │   ├── DepartmentMana │   │   ├── UserMana │   │   ├── Welcome.jsx │   │   ├── Welcome.less │   │   ├── accountingSubject │   │   ├── accountingSubjectConnect │   │   ├── apportionmentLevel │   │   ├── baseSetting │   │   ├── costAccounting │   │   ├── costAllocationParamsConnect │   │   ├── costAllocationParamsSetting │   │   ├── costProjectMana │   │   ├── document.ejs │   │   ├── platformMana │   │   ├── reportTableExport │   │   ├── responsibilityCenter │   │   ├── responsibilityCenterConnect │   │   └── user │   ├── projectConstant.js │   ├── service-worker.js │   ├── services │   │   ├── ant-design-pro │   │   ├── swagger │   │   └── user.js │   └── utils.js ├── tree.text └── yarn.lock 31 directories, 28 files