├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── .stylelintrc.js ├── LICENSE ├── README.md ├── config ├── config.dev.ts ├── config.ts ├── defaultSettings.ts ├── oneapi.json ├── proxy.ts ├── routes.ts └── twoapi.json ├── jest.config.js ├── jsconfig.json ├── mock ├── listTableList.ts ├── notices.ts ├── route.ts └── user.ts ├── package.json ├── public ├── CNAME ├── React.svg ├── favicon.ico ├── icons │ ├── icon-128x128.png │ ├── icon-192x192.png │ └── icon-512x512.png ├── login-bg.jpg ├── login-bg.png ├── logo.svg ├── poster │ └── 1.png ├── pro_icon.svg └── video │ └── 1.mp4 ├── src ├── access.ts ├── app.tsx ├── components │ ├── Footer │ │ └── index.tsx │ ├── HeaderContent │ │ └── index.tsx │ ├── HeaderDropdown │ │ ├── index.less │ │ └── index.tsx │ ├── HeaderSearch │ │ ├── index.less │ │ └── index.tsx │ ├── IconSelector │ │ ├── Category.tsx │ │ ├── CopyableIcon.tsx │ │ ├── IconPicSearcher.tsx │ │ ├── fields.ts │ │ ├── index.tsx │ │ ├── style.less │ │ └── themeIcons.tsx │ ├── KeepAlive │ │ └── index.tsx │ ├── KeepAliveTabs │ │ ├── components │ │ │ └── SortableTab │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── NoticeIcon │ │ ├── NoticeIcon.tsx │ │ ├── NoticeList.less │ │ ├── NoticeList.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── RightContent │ │ ├── AvatarDropdown.tsx │ │ ├── index.less │ │ └── index.tsx │ └── index.md ├── e2e │ └── baseLayout.e2e.js ├── global.less ├── global.tsx ├── layouts │ └── TabsLayout.tsx ├── locales │ ├── en-US.ts │ ├── en-US │ │ ├── component.ts │ │ ├── globalHeader.ts │ │ ├── menu.ts │ │ ├── pages.ts │ │ ├── pwa.ts │ │ ├── settingDrawer.ts │ │ └── settings.ts │ ├── zh-CN.ts │ └── zh-CN │ │ ├── component.ts │ │ ├── globalHeader.ts │ │ ├── menu.ts │ │ ├── pages.ts │ │ ├── pwa.ts │ │ ├── settingDrawer.ts │ │ └── settings.ts ├── manifest.json ├── models │ ├── BaseEntity.ts │ └── system.ts ├── pages │ ├── 404.tsx │ ├── Admin.tsx │ ├── account │ │ ├── center │ │ │ ├── Center.less │ │ │ ├── _mock.ts │ │ │ ├── components │ │ │ │ ├── AvatarCropper │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── BaseInfo │ │ │ │ │ └── index.tsx │ │ │ │ └── ResetPassword │ │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ └── settings │ │ │ ├── _mock.ts │ │ │ ├── components │ │ │ ├── BaseView.less │ │ │ ├── PhoneView.tsx │ │ │ ├── base.tsx │ │ │ ├── binding.tsx │ │ │ ├── notification.tsx │ │ │ └── security.tsx │ │ │ ├── data.d.ts │ │ │ ├── geographic │ │ │ ├── city.json │ │ │ └── province.json │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ └── style.less │ ├── dashboard │ │ ├── analysis │ │ │ ├── _mock.ts │ │ │ ├── components │ │ │ │ ├── Charts │ │ │ │ │ ├── Bar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ChartCard │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Field │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Gauge │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MiniArea │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MiniBar │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MiniProgress │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Pie │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TagCloud │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TimelineChart │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WaterWave │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── autoHeight.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── IntroduceRow.tsx │ │ │ │ ├── NumberInfo │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── OfflineData.tsx │ │ │ │ ├── PageLoading │ │ │ │ │ └── index.tsx │ │ │ │ ├── ProportionSales.tsx │ │ │ │ ├── SalesCard.tsx │ │ │ │ ├── TopSearch.tsx │ │ │ │ └── Trend │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ ├── style.less │ │ │ └── utils │ │ │ │ ├── Yuan.tsx │ │ │ │ ├── utils.less │ │ │ │ └── utils.ts │ │ ├── components │ │ │ ├── EditableLinkGroup │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── Radar │ │ │ │ ├── autoHeight.tsx │ │ │ │ └── index.tsx │ │ ├── data.d.ts │ │ ├── index.tsx │ │ ├── monitor │ │ │ ├── _mock.ts │ │ │ ├── components │ │ │ │ ├── ActiveChart │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── Charts │ │ │ │ │ ├── Gauge │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MiniArea │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Pie │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── TagCloud │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── WaterWave │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── autoHeight.tsx │ │ │ │ └── Map │ │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ └── style.less │ │ ├── service.ts │ │ ├── style.less │ │ └── workplace │ │ │ ├── _mock.ts │ │ │ ├── components │ │ │ ├── EditableLinkGroup │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── Radar │ │ │ │ ├── autoHeight.tsx │ │ │ │ └── index.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ └── style.less │ ├── document.ejs │ ├── editor │ │ ├── flow │ │ │ ├── common │ │ │ │ └── IconFont │ │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── EditorContextMenu │ │ │ │ │ ├── FlowContextMenu.tsx │ │ │ │ │ ├── KoniContextMenu.tsx │ │ │ │ │ ├── MenuItem.tsx │ │ │ │ │ ├── MindContextMenu.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorDetailPanel │ │ │ │ │ ├── DetailForm.tsx │ │ │ │ │ ├── FlowDetailPanel.tsx │ │ │ │ │ ├── KoniDetailPanel.tsx │ │ │ │ │ ├── MindDetailPanel.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorItemPanel │ │ │ │ │ ├── FlowItemPanel.tsx │ │ │ │ │ ├── KoniItemPanel.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorMinimap │ │ │ │ │ └── index.tsx │ │ │ │ └── EditorToolbar │ │ │ │ │ ├── FlowToolbar.tsx │ │ │ │ │ ├── KoniToolbar.tsx │ │ │ │ │ ├── MindToolbar.tsx │ │ │ │ │ ├── ToolbarButton.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── koni │ │ │ ├── common │ │ │ │ └── IconFont │ │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ │ ├── EditorContextMenu │ │ │ │ │ ├── FlowContextMenu.tsx │ │ │ │ │ ├── KoniContextMenu.tsx │ │ │ │ │ ├── MenuItem.tsx │ │ │ │ │ ├── MindContextMenu.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorDetailPanel │ │ │ │ │ ├── DetailForm.tsx │ │ │ │ │ ├── FlowDetailPanel.tsx │ │ │ │ │ ├── KoniDetailPanel.tsx │ │ │ │ │ ├── MindDetailPanel.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorItemPanel │ │ │ │ │ ├── FlowItemPanel.tsx │ │ │ │ │ ├── KoniItemPanel.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── EditorMinimap │ │ │ │ │ └── index.tsx │ │ │ │ └── EditorToolbar │ │ │ │ │ ├── FlowToolbar.tsx │ │ │ │ │ ├── KoniToolbar.tsx │ │ │ │ │ ├── MindToolbar.tsx │ │ │ │ │ ├── ToolbarButton.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── mind │ │ │ ├── common │ │ │ └── IconFont │ │ │ │ └── index.ts │ │ │ ├── components │ │ │ ├── EditorContextMenu │ │ │ │ ├── FlowContextMenu.tsx │ │ │ │ ├── KoniContextMenu.tsx │ │ │ │ ├── MenuItem.tsx │ │ │ │ ├── MindContextMenu.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── EditorDetailPanel │ │ │ │ ├── DetailForm.tsx │ │ │ │ ├── FlowDetailPanel.tsx │ │ │ │ ├── KoniDetailPanel.tsx │ │ │ │ ├── MindDetailPanel.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── EditorItemPanel │ │ │ │ ├── FlowItemPanel.tsx │ │ │ │ ├── KoniItemPanel.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── EditorMinimap │ │ │ │ └── index.tsx │ │ │ └── EditorToolbar │ │ │ │ ├── FlowToolbar.tsx │ │ │ │ ├── KoniToolbar.tsx │ │ │ │ ├── MindToolbar.tsx │ │ │ │ ├── ToolbarButton.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── worldCup2018.json │ ├── exception │ │ ├── 403 │ │ │ └── index.tsx │ │ ├── 404 │ │ │ └── index.tsx │ │ └── 500 │ │ │ └── index.tsx │ ├── monitor │ │ ├── cache │ │ │ ├── data.d.ts │ │ │ ├── index.less │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── druid │ │ │ └── index.tsx │ │ ├── job │ │ │ ├── components │ │ │ │ ├── detail.tsx │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── joblog │ │ │ ├── components │ │ │ │ └── detail.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── logininfor │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── online │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── operlog │ │ │ ├── components │ │ │ │ └── detail.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ └── server │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ ├── service.ts │ │ │ └── style.less │ ├── result │ │ ├── fail │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── success │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── system │ │ ├── config │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── dept │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── dict │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── dictData │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── menu │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── notice │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── post │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ ├── role │ │ │ ├── components │ │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ └── user │ │ │ ├── components │ │ │ ├── DeptTree.tsx │ │ │ ├── ResetPwd.tsx │ │ │ └── edit.tsx │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ ├── tool │ │ ├── design │ │ │ └── index.tsx │ │ ├── gen │ │ │ ├── Form.tsx │ │ │ ├── _mock.ts │ │ │ ├── data.d.ts │ │ │ ├── index.tsx │ │ │ └── service.ts │ │ └── swagger │ │ │ └── index.tsx │ └── user │ │ ├── Login │ │ ├── index.less │ │ └── index.tsx │ │ ├── Login1 │ │ ├── index.less │ │ └── index.tsx │ │ └── Login2 │ │ ├── index.less │ │ └── index.tsx ├── service-worker.js ├── services │ ├── ant-design-pro │ │ ├── api.ts │ │ ├── index.ts │ │ ├── login.ts │ │ ├── menu.ts │ │ └── typings.d.ts │ ├── session.ts │ ├── swagger │ │ ├── index.ts │ │ ├── pet.ts │ │ ├── store.ts │ │ ├── typings.d.ts │ │ └── user.ts │ └── typings.d.ts ├── typings.d.ts └── utils │ ├── IconUtil.ts │ ├── downloadFile.ts │ ├── permission.ts │ └── utils.ts ├── tailwind.config.js ├── tests ├── PuppeteerEnvironment.js ├── beforeTest.js ├── getBrowser.js ├── run-tests.js └── setupTests.js ├── tsconfig.json └── vm ├── Form.tsx.vm ├── _mock.ts.vm ├── data.d.ts.vm ├── index.tsx.vm ├── locale.ts.vm └── service.ts.vm /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/README.md -------------------------------------------------------------------------------- /config/config.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/config.dev.ts -------------------------------------------------------------------------------- /config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/config.ts -------------------------------------------------------------------------------- /config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/defaultSettings.ts -------------------------------------------------------------------------------- /config/oneapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/oneapi.json -------------------------------------------------------------------------------- /config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/proxy.ts -------------------------------------------------------------------------------- /config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/routes.ts -------------------------------------------------------------------------------- /config/twoapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/config/twoapi.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/jsconfig.json -------------------------------------------------------------------------------- /mock/listTableList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/mock/listTableList.ts -------------------------------------------------------------------------------- /mock/notices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/mock/notices.ts -------------------------------------------------------------------------------- /mock/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/mock/route.ts -------------------------------------------------------------------------------- /mock/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/mock/user.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | ruoyi-react.oakhole.top -------------------------------------------------------------------------------- /public/React.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/React.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /public/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/login-bg.jpg -------------------------------------------------------------------------------- /public/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/login-bg.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/poster/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/poster/1.png -------------------------------------------------------------------------------- /public/pro_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/pro_icon.svg -------------------------------------------------------------------------------- /public/video/1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/public/video/1.mp4 -------------------------------------------------------------------------------- /src/access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/access.ts -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/HeaderContent/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderDropdown/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/HeaderDropdown/index.less -------------------------------------------------------------------------------- /src/components/HeaderDropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/HeaderDropdown/index.tsx -------------------------------------------------------------------------------- /src/components/HeaderSearch/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/HeaderSearch/index.less -------------------------------------------------------------------------------- /src/components/HeaderSearch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/HeaderSearch/index.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/Category.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/Category.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/CopyableIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/CopyableIcon.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/IconPicSearcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/IconPicSearcher.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/fields.ts -------------------------------------------------------------------------------- /src/components/IconSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/index.tsx -------------------------------------------------------------------------------- /src/components/IconSelector/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/style.less -------------------------------------------------------------------------------- /src/components/IconSelector/themeIcons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/IconSelector/themeIcons.tsx -------------------------------------------------------------------------------- /src/components/KeepAlive/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/KeepAlive/index.tsx -------------------------------------------------------------------------------- /src/components/KeepAliveTabs/components/SortableTab/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/KeepAliveTabs/components/SortableTab/index.less -------------------------------------------------------------------------------- /src/components/KeepAliveTabs/components/SortableTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/KeepAliveTabs/components/SortableTab/index.tsx -------------------------------------------------------------------------------- /src/components/KeepAliveTabs/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/KeepAliveTabs/index.less -------------------------------------------------------------------------------- /src/components/KeepAliveTabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/KeepAliveTabs/index.tsx -------------------------------------------------------------------------------- /src/components/NoticeIcon/NoticeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/NoticeIcon/NoticeIcon.tsx -------------------------------------------------------------------------------- /src/components/NoticeIcon/NoticeList.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/NoticeIcon/NoticeList.less -------------------------------------------------------------------------------- /src/components/NoticeIcon/NoticeList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/NoticeIcon/NoticeList.tsx -------------------------------------------------------------------------------- /src/components/NoticeIcon/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/NoticeIcon/index.less -------------------------------------------------------------------------------- /src/components/NoticeIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/NoticeIcon/index.tsx -------------------------------------------------------------------------------- /src/components/RightContent/AvatarDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/RightContent/AvatarDropdown.tsx -------------------------------------------------------------------------------- /src/components/RightContent/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/RightContent/index.less -------------------------------------------------------------------------------- /src/components/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/RightContent/index.tsx -------------------------------------------------------------------------------- /src/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/components/index.md -------------------------------------------------------------------------------- /src/e2e/baseLayout.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/e2e/baseLayout.e2e.js -------------------------------------------------------------------------------- /src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/global.less -------------------------------------------------------------------------------- /src/global.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/global.tsx -------------------------------------------------------------------------------- /src/layouts/TabsLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/layouts/TabsLayout.tsx -------------------------------------------------------------------------------- /src/locales/en-US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US.ts -------------------------------------------------------------------------------- /src/locales/en-US/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/component.ts -------------------------------------------------------------------------------- /src/locales/en-US/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/globalHeader.ts -------------------------------------------------------------------------------- /src/locales/en-US/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/menu.ts -------------------------------------------------------------------------------- /src/locales/en-US/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/pages.ts -------------------------------------------------------------------------------- /src/locales/en-US/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/pwa.ts -------------------------------------------------------------------------------- /src/locales/en-US/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/settingDrawer.ts -------------------------------------------------------------------------------- /src/locales/en-US/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/en-US/settings.ts -------------------------------------------------------------------------------- /src/locales/zh-CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/component.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/globalHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/globalHeader.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/menu.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/pages.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/pwa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/pwa.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/settingDrawer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/settingDrawer.ts -------------------------------------------------------------------------------- /src/locales/zh-CN/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/locales/zh-CN/settings.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/models/BaseEntity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/models/BaseEntity.ts -------------------------------------------------------------------------------- /src/models/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/models/system.ts -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/Admin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/Admin.tsx -------------------------------------------------------------------------------- /src/pages/account/center/Center.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/Center.less -------------------------------------------------------------------------------- /src/pages/account/center/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/_mock.ts -------------------------------------------------------------------------------- /src/pages/account/center/components/AvatarCropper/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/components/AvatarCropper/index.less -------------------------------------------------------------------------------- /src/pages/account/center/components/AvatarCropper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/components/AvatarCropper/index.tsx -------------------------------------------------------------------------------- /src/pages/account/center/components/BaseInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/components/BaseInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/account/center/components/ResetPassword/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/components/ResetPassword/index.tsx -------------------------------------------------------------------------------- /src/pages/account/center/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/data.d.ts -------------------------------------------------------------------------------- /src/pages/account/center/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/index.tsx -------------------------------------------------------------------------------- /src/pages/account/center/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/center/service.ts -------------------------------------------------------------------------------- /src/pages/account/settings/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/_mock.ts -------------------------------------------------------------------------------- /src/pages/account/settings/components/BaseView.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/BaseView.less -------------------------------------------------------------------------------- /src/pages/account/settings/components/PhoneView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/PhoneView.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/components/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/base.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/components/binding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/binding.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/components/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/notification.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/components/security.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/components/security.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/data.d.ts -------------------------------------------------------------------------------- /src/pages/account/settings/geographic/city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/geographic/city.json -------------------------------------------------------------------------------- /src/pages/account/settings/geographic/province.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/geographic/province.json -------------------------------------------------------------------------------- /src/pages/account/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/index.tsx -------------------------------------------------------------------------------- /src/pages/account/settings/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/service.ts -------------------------------------------------------------------------------- /src/pages/account/settings/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/account/settings/style.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/_mock.ts -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/Bar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/Bar/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/ChartCard/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/ChartCard/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/ChartCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/ChartCard/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/Field/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/Field/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/Field/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/Field/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/Gauge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/Gauge/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/MiniArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/MiniArea/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/MiniBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/MiniBar/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/MiniProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/MiniProgress/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/Pie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/Pie/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/TagCloud/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/TagCloud/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/TimelineChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/TimelineChart/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/WaterWave/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/WaterWave/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/autoHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/autoHeight.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Charts/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Charts/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/IntroduceRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/IntroduceRow.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/NumberInfo/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/NumberInfo/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/NumberInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/NumberInfo/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/OfflineData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/OfflineData.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/PageLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/PageLoading/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/ProportionSales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/ProportionSales.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/SalesCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/SalesCard.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/TopSearch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/TopSearch.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Trend/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Trend/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/components/Trend/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/components/Trend/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/data.d.ts -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/service.ts -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/style.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/utils/Yuan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/utils/Yuan.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/utils/utils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/utils/utils.less -------------------------------------------------------------------------------- /src/pages/dashboard/analysis/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/analysis/utils/utils.ts -------------------------------------------------------------------------------- /src/pages/dashboard/components/EditableLinkGroup/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/components/EditableLinkGroup/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/components/EditableLinkGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/components/EditableLinkGroup/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/components/Radar/autoHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/components/Radar/autoHeight.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/components/Radar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/components/Radar/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/data.d.ts -------------------------------------------------------------------------------- /src/pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/_mock.ts -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/ActiveChart/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/ActiveChart/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/ActiveChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/ActiveChart/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/Gauge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/Gauge/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/MiniArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/MiniArea/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/Pie/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/Pie/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/TagCloud/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/TagCloud/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/WaterWave/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/WaterWave/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Charts/autoHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Charts/autoHeight.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/components/Map/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/components/Map/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/data.d.ts -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/service.ts -------------------------------------------------------------------------------- /src/pages/dashboard/monitor/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/monitor/style.less -------------------------------------------------------------------------------- /src/pages/dashboard/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/service.ts -------------------------------------------------------------------------------- /src/pages/dashboard/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/style.less -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/_mock.ts -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/components/EditableLinkGroup/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/components/EditableLinkGroup/index.less -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/components/EditableLinkGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/components/EditableLinkGroup/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/components/Radar/autoHeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/components/Radar/autoHeight.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/components/Radar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/components/Radar/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/data.d.ts -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/index.tsx -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/service.ts -------------------------------------------------------------------------------- /src/pages/dashboard/workplace/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/dashboard/workplace/style.less -------------------------------------------------------------------------------- /src/pages/document.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/document.ejs -------------------------------------------------------------------------------- /src/pages/editor/flow/common/IconFont/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/common/IconFont/index.ts -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/FlowContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/FlowContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/KoniContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/KoniContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/MenuItem.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/MindContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/MindContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/index.less -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorContextMenu/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/DetailForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/DetailForm.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/FlowDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/FlowDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/KoniDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/KoniDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/MindDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/MindDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorDetailPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorDetailPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorItemPanel/FlowItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorItemPanel/FlowItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorItemPanel/KoniItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorItemPanel/KoniItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorItemPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorItemPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorItemPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorItemPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorMinimap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorMinimap/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/FlowToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/FlowToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/KoniToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/KoniToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/MindToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/MindToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/ToolbarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/ToolbarButton.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/index.less -------------------------------------------------------------------------------- /src/pages/editor/flow/components/EditorToolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/components/EditorToolbar/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/flow/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/index.less -------------------------------------------------------------------------------- /src/pages/editor/flow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/flow/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/common/IconFont/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/common/IconFont/index.ts -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/FlowContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/FlowContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/KoniContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/KoniContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/MenuItem.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/MindContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/MindContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/index.less -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorContextMenu/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/DetailForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/DetailForm.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/FlowDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/FlowDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/KoniDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/KoniDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/MindDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/MindDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorDetailPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorDetailPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorItemPanel/FlowItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorItemPanel/FlowItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorItemPanel/KoniItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorItemPanel/KoniItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorItemPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorItemPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorItemPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorItemPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorMinimap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorMinimap/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/FlowToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/FlowToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/KoniToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/KoniToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/MindToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/MindToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/ToolbarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/ToolbarButton.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/index.less -------------------------------------------------------------------------------- /src/pages/editor/koni/components/EditorToolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/components/EditorToolbar/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/koni/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/index.less -------------------------------------------------------------------------------- /src/pages/editor/koni/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/koni/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/common/IconFont/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/common/IconFont/index.ts -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/FlowContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/FlowContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/KoniContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/KoniContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/MenuItem.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/MindContextMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/MindContextMenu.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/index.less -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorContextMenu/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/DetailForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/DetailForm.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/FlowDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/FlowDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/KoniDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/KoniDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/MindDetailPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/MindDetailPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorDetailPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorDetailPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorItemPanel/FlowItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorItemPanel/FlowItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorItemPanel/KoniItemPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorItemPanel/KoniItemPanel.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorItemPanel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorItemPanel/index.less -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorItemPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorItemPanel/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorMinimap/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorMinimap/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/FlowToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/FlowToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/KoniToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/KoniToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/MindToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/MindToolbar.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/ToolbarButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/ToolbarButton.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/index.less -------------------------------------------------------------------------------- /src/pages/editor/mind/components/EditorToolbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/components/EditorToolbar/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/index.less -------------------------------------------------------------------------------- /src/pages/editor/mind/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/index.tsx -------------------------------------------------------------------------------- /src/pages/editor/mind/worldCup2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/editor/mind/worldCup2018.json -------------------------------------------------------------------------------- /src/pages/exception/403/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/exception/403/index.tsx -------------------------------------------------------------------------------- /src/pages/exception/404/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/exception/404/index.tsx -------------------------------------------------------------------------------- /src/pages/exception/500/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/exception/500/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/cache/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/cache/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/cache/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/cache/index.less -------------------------------------------------------------------------------- /src/pages/monitor/cache/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/cache/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/cache/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/cache/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/druid/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/druid/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/job/components/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/job/components/detail.tsx -------------------------------------------------------------------------------- /src/pages/monitor/job/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/job/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/monitor/job/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/job/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/job/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/job/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/job/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/job/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/joblog/components/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/joblog/components/detail.tsx -------------------------------------------------------------------------------- /src/pages/monitor/joblog/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/joblog/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/joblog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/joblog/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/joblog/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/joblog/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/logininfor/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/logininfor/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/monitor/logininfor/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/logininfor/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/logininfor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/logininfor/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/logininfor/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/logininfor/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/online/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/online/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/online/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/online/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/online/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/online/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/operlog/components/detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/operlog/components/detail.tsx -------------------------------------------------------------------------------- /src/pages/monitor/operlog/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/operlog/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/operlog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/operlog/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/operlog/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/operlog/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/server/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/server/data.d.ts -------------------------------------------------------------------------------- /src/pages/monitor/server/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/server/index.tsx -------------------------------------------------------------------------------- /src/pages/monitor/server/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/monitor/server/service.ts -------------------------------------------------------------------------------- /src/pages/monitor/server/style.less: -------------------------------------------------------------------------------- 1 | @import '~antd/es/style/themes/default.less'; 2 | 3 | .card { 4 | margin-bottom: 12px; 5 | } 6 | -------------------------------------------------------------------------------- /src/pages/result/fail/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/result/fail/index.less -------------------------------------------------------------------------------- /src/pages/result/fail/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/result/fail/index.tsx -------------------------------------------------------------------------------- /src/pages/result/success/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/result/success/index.less -------------------------------------------------------------------------------- /src/pages/result/success/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/result/success/index.tsx -------------------------------------------------------------------------------- /src/pages/system/config/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/config/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/config/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/config/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/config/index.tsx -------------------------------------------------------------------------------- /src/pages/system/config/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/config/service.ts -------------------------------------------------------------------------------- /src/pages/system/dept/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dept/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/dept/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dept/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/dept/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dept/index.tsx -------------------------------------------------------------------------------- /src/pages/system/dept/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dept/service.ts -------------------------------------------------------------------------------- /src/pages/system/dict/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dict/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/dict/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dict/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/dict/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dict/index.tsx -------------------------------------------------------------------------------- /src/pages/system/dict/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dict/service.ts -------------------------------------------------------------------------------- /src/pages/system/dictData/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dictData/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/dictData/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dictData/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/dictData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dictData/index.tsx -------------------------------------------------------------------------------- /src/pages/system/dictData/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/dictData/service.ts -------------------------------------------------------------------------------- /src/pages/system/menu/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/menu/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/menu/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/menu/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/menu/index.tsx -------------------------------------------------------------------------------- /src/pages/system/menu/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/menu/service.ts -------------------------------------------------------------------------------- /src/pages/system/notice/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/notice/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/notice/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/notice/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/notice/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/notice/index.tsx -------------------------------------------------------------------------------- /src/pages/system/notice/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/notice/service.ts -------------------------------------------------------------------------------- /src/pages/system/post/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/post/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/post/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/post/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/post/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/post/index.tsx -------------------------------------------------------------------------------- /src/pages/system/post/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/post/service.ts -------------------------------------------------------------------------------- /src/pages/system/role/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/role/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/role/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/role/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/role/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/role/index.tsx -------------------------------------------------------------------------------- /src/pages/system/role/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/role/service.ts -------------------------------------------------------------------------------- /src/pages/system/user/components/DeptTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/components/DeptTree.tsx -------------------------------------------------------------------------------- /src/pages/system/user/components/ResetPwd.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/components/ResetPwd.tsx -------------------------------------------------------------------------------- /src/pages/system/user/components/edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/components/edit.tsx -------------------------------------------------------------------------------- /src/pages/system/user/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/data.d.ts -------------------------------------------------------------------------------- /src/pages/system/user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/index.tsx -------------------------------------------------------------------------------- /src/pages/system/user/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/system/user/service.ts -------------------------------------------------------------------------------- /src/pages/tool/design/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/design/index.tsx -------------------------------------------------------------------------------- /src/pages/tool/gen/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/gen/Form.tsx -------------------------------------------------------------------------------- /src/pages/tool/gen/_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/gen/_mock.ts -------------------------------------------------------------------------------- /src/pages/tool/gen/data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/gen/data.d.ts -------------------------------------------------------------------------------- /src/pages/tool/gen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/gen/index.tsx -------------------------------------------------------------------------------- /src/pages/tool/gen/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/gen/service.ts -------------------------------------------------------------------------------- /src/pages/tool/swagger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/tool/swagger/index.tsx -------------------------------------------------------------------------------- /src/pages/user/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login/index.less -------------------------------------------------------------------------------- /src/pages/user/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/user/Login1/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login1/index.less -------------------------------------------------------------------------------- /src/pages/user/Login1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login1/index.tsx -------------------------------------------------------------------------------- /src/pages/user/Login2/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login2/index.less -------------------------------------------------------------------------------- /src/pages/user/Login2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/pages/user/Login2/index.tsx -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/services/ant-design-pro/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/ant-design-pro/api.ts -------------------------------------------------------------------------------- /src/services/ant-design-pro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/ant-design-pro/index.ts -------------------------------------------------------------------------------- /src/services/ant-design-pro/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/ant-design-pro/login.ts -------------------------------------------------------------------------------- /src/services/ant-design-pro/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/ant-design-pro/menu.ts -------------------------------------------------------------------------------- /src/services/ant-design-pro/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/ant-design-pro/typings.d.ts -------------------------------------------------------------------------------- /src/services/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/session.ts -------------------------------------------------------------------------------- /src/services/swagger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/swagger/index.ts -------------------------------------------------------------------------------- /src/services/swagger/pet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/swagger/pet.ts -------------------------------------------------------------------------------- /src/services/swagger/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/swagger/store.ts -------------------------------------------------------------------------------- /src/services/swagger/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/swagger/typings.d.ts -------------------------------------------------------------------------------- /src/services/swagger/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/swagger/user.ts -------------------------------------------------------------------------------- /src/services/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/services/typings.d.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/utils/IconUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/utils/IconUtil.ts -------------------------------------------------------------------------------- /src/utils/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/utils/downloadFile.ts -------------------------------------------------------------------------------- /src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/utils/permission.ts -------------------------------------------------------------------------------- /src/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/src/utils/utils.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/PuppeteerEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tests/PuppeteerEnvironment.js -------------------------------------------------------------------------------- /tests/beforeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tests/beforeTest.js -------------------------------------------------------------------------------- /tests/getBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tests/getBrowser.js -------------------------------------------------------------------------------- /tests/run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tests/run-tests.js -------------------------------------------------------------------------------- /tests/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tests/setupTests.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vm/Form.tsx.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/Form.tsx.vm -------------------------------------------------------------------------------- /vm/_mock.ts.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/_mock.ts.vm -------------------------------------------------------------------------------- /vm/data.d.ts.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/data.d.ts.vm -------------------------------------------------------------------------------- /vm/index.tsx.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/index.tsx.vm -------------------------------------------------------------------------------- /vm/locale.ts.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/locale.ts.vm -------------------------------------------------------------------------------- /vm/service.ts.vm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oakhole/RuoYi-React/HEAD/vm/service.ts.vm --------------------------------------------------------------------------------