├── .gitattributes ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── README └── image-20221127173957371.png ├── docs ├── .nojekyll ├── README.md ├── TODO.md ├── _coverpage.md ├── _sidebar.md ├── example.png ├── index.html ├── jetbrains-logo.png ├── logo_react-amid-admin.png ├── mock数据.md ├── 介绍.md ├── 如何修改左侧菜单栏.md ├── 如何新增一个Amis页面.md ├── 开发手册.md ├── 开发环境如何mock接口.md └── 更新记录.md ├── index.html ├── mock ├── api │ ├── chart │ │ ├── chart.json │ │ ├── chart2.json │ │ └── chartData.json │ ├── customer.js │ ├── form │ │ └── save.json │ ├── gauge │ │ └── simple.json │ ├── line │ │ └── simple.json │ ├── login.json │ ├── menus.js │ ├── mock2 │ │ └── form │ │ │ └── initData.json │ ├── pie │ │ └── simple.json │ └── schemaApi │ │ └── demo1.json └── index.ts ├── package.json ├── src ├── App.tsx ├── components │ ├── AMisRenderer.tsx │ └── UserInfo.tsx ├── index.html ├── index.tsx ├── pages │ ├── Dashboard.tsx │ ├── Hello.tsx │ └── admin │ │ ├── common │ │ ├── 404.tsx │ │ ├── Login.tsx │ │ ├── Register.tsx │ │ └── Tabs.tsx │ │ ├── customer │ │ └── index.tsx │ │ ├── dialog │ │ ├── Simple.tsx │ │ └── Simple2.tsx │ │ ├── form │ │ ├── Advanced.tsx │ │ ├── Basic.tsx │ │ ├── Editor.tsx │ │ └── Wizard.tsx │ │ ├── horizontal.tsx │ │ ├── icon │ │ ├── 1.svg │ │ ├── Demo.tsx │ │ └── Simple.tsx │ │ ├── index.tsx │ │ └── schema │ │ ├── CustomRenderer.tsx │ │ ├── JsonConsole.tsx │ │ ├── demo1.tsx │ │ └── index.tsx ├── routes │ ├── RouterGuard.tsx │ ├── index.tsx │ └── path2Compoment.tsx ├── scss │ └── style.scss ├── stores │ ├── UserStore.ts │ ├── appStore.ts │ └── index.ts └── utils │ ├── polyfill.tsx │ ├── requestInterceptor.ts │ └── schema2component.tsx ├── tsconfig.json └── vite.config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.tsx linguist-language=TypeScript -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/README.md -------------------------------------------------------------------------------- /README/image-20221127173957371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/README/image-20221127173957371.png -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/TODO.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/example.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jetbrains-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/jetbrains-logo.png -------------------------------------------------------------------------------- /docs/logo_react-amid-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/logo_react-amid-admin.png -------------------------------------------------------------------------------- /docs/mock数据.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/mock数据.md -------------------------------------------------------------------------------- /docs/介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/介绍.md -------------------------------------------------------------------------------- /docs/如何修改左侧菜单栏.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/如何修改左侧菜单栏.md -------------------------------------------------------------------------------- /docs/如何新增一个Amis页面.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/如何新增一个Amis页面.md -------------------------------------------------------------------------------- /docs/开发手册.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/开发手册.md -------------------------------------------------------------------------------- /docs/开发环境如何mock接口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/开发环境如何mock接口.md -------------------------------------------------------------------------------- /docs/更新记录.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/docs/更新记录.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/index.html -------------------------------------------------------------------------------- /mock/api/chart/chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/chart/chart.json -------------------------------------------------------------------------------- /mock/api/chart/chart2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/chart/chart2.json -------------------------------------------------------------------------------- /mock/api/chart/chartData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/chart/chartData.json -------------------------------------------------------------------------------- /mock/api/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/customer.js -------------------------------------------------------------------------------- /mock/api/form/save.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/form/save.json -------------------------------------------------------------------------------- /mock/api/gauge/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/gauge/simple.json -------------------------------------------------------------------------------- /mock/api/line/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/line/simple.json -------------------------------------------------------------------------------- /mock/api/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/login.json -------------------------------------------------------------------------------- /mock/api/menus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/menus.js -------------------------------------------------------------------------------- /mock/api/mock2/form/initData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/mock2/form/initData.json -------------------------------------------------------------------------------- /mock/api/pie/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/pie/simple.json -------------------------------------------------------------------------------- /mock/api/schemaApi/demo1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/api/schemaApi/demo1.json -------------------------------------------------------------------------------- /mock/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/mock/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/package.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/AMisRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/components/AMisRenderer.tsx -------------------------------------------------------------------------------- /src/components/UserInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/components/UserInfo.tsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/Dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/Dashboard.tsx -------------------------------------------------------------------------------- /src/pages/Hello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/Hello.tsx -------------------------------------------------------------------------------- /src/pages/admin/common/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/common/404.tsx -------------------------------------------------------------------------------- /src/pages/admin/common/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/common/Login.tsx -------------------------------------------------------------------------------- /src/pages/admin/common/Register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/common/Register.tsx -------------------------------------------------------------------------------- /src/pages/admin/common/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/common/Tabs.tsx -------------------------------------------------------------------------------- /src/pages/admin/customer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/customer/index.tsx -------------------------------------------------------------------------------- /src/pages/admin/dialog/Simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/dialog/Simple.tsx -------------------------------------------------------------------------------- /src/pages/admin/dialog/Simple2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/dialog/Simple2.tsx -------------------------------------------------------------------------------- /src/pages/admin/form/Advanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/form/Advanced.tsx -------------------------------------------------------------------------------- /src/pages/admin/form/Basic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/form/Basic.tsx -------------------------------------------------------------------------------- /src/pages/admin/form/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/form/Editor.tsx -------------------------------------------------------------------------------- /src/pages/admin/form/Wizard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/form/Wizard.tsx -------------------------------------------------------------------------------- /src/pages/admin/horizontal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/horizontal.tsx -------------------------------------------------------------------------------- /src/pages/admin/icon/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/icon/1.svg -------------------------------------------------------------------------------- /src/pages/admin/icon/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/icon/Demo.tsx -------------------------------------------------------------------------------- /src/pages/admin/icon/Simple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/icon/Simple.tsx -------------------------------------------------------------------------------- /src/pages/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/index.tsx -------------------------------------------------------------------------------- /src/pages/admin/schema/CustomRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/schema/CustomRenderer.tsx -------------------------------------------------------------------------------- /src/pages/admin/schema/JsonConsole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/schema/JsonConsole.tsx -------------------------------------------------------------------------------- /src/pages/admin/schema/demo1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/schema/demo1.tsx -------------------------------------------------------------------------------- /src/pages/admin/schema/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/pages/admin/schema/index.tsx -------------------------------------------------------------------------------- /src/routes/RouterGuard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/routes/RouterGuard.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/routes/path2Compoment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/routes/path2Compoment.tsx -------------------------------------------------------------------------------- /src/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/scss/style.scss -------------------------------------------------------------------------------- /src/stores/UserStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/stores/UserStore.ts -------------------------------------------------------------------------------- /src/stores/appStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/stores/appStore.ts -------------------------------------------------------------------------------- /src/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/stores/index.ts -------------------------------------------------------------------------------- /src/utils/polyfill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/utils/polyfill.tsx -------------------------------------------------------------------------------- /src/utils/requestInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/utils/requestInterceptor.ts -------------------------------------------------------------------------------- /src/utils/schema2component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/src/utils/schema2component.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iceqing/react-amis-admin/HEAD/vite.config.js --------------------------------------------------------------------------------