├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── alias.config.js ├── babel.config.js ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── .gitkeep │ └── process │ │ ├── common.js │ │ ├── gp.js │ │ ├── halm.js │ │ ├── machine.js │ │ └── signIn.js ├── assets │ ├── ant-icon │ │ └── index.js │ ├── font │ │ └── Sketchalot.ttf │ └── logo.svg ├── components │ ├── HelloWorld.vue │ ├── common │ │ └── editableText.vue │ ├── excel │ │ └── jsonToCsvButton.vue │ ├── frog-ui │ │ ├── chart │ │ │ └── line.vue │ │ ├── dateTimePicker │ │ │ └── dateTimePicker.vue │ │ ├── icon │ │ │ └── index.vue │ │ └── table │ │ │ └── index.vue │ └── frogx-ui │ │ └── debounceInput │ │ └── index.vue ├── layout │ ├── index.vue │ ├── outside │ │ ├── appMain │ │ │ └── index.vue │ │ ├── index.vue │ │ ├── modal.vue │ │ ├── tipbar │ │ │ └── index.vue │ │ └── toolbar │ │ │ ├── index.vue │ │ │ └── sidebarActivator.vue │ └── sidebar │ │ ├── index.vue │ │ ├── sidebarLogo │ │ └── index.vue │ │ └── sidebarMenu │ │ ├── index.vue │ │ └── sidebarMenuItem.vue ├── main.js ├── plugins │ ├── axios.js │ ├── common.js │ ├── element-ui.js │ ├── frog-ui.js │ ├── vue-echarts.js │ └── xlsx.js ├── router │ ├── dynamicRoutes.js │ ├── error │ │ └── index.js │ ├── fullRoutes.js │ └── index.js ├── store │ ├── getters.js │ ├── index.js │ └── modules │ │ ├── apps.js │ │ ├── permission.js │ │ ├── routeState.js │ │ └── style.js ├── style │ ├── common.scss │ ├── echarts.scss │ ├── element │ │ ├── index.scss │ │ └── table.scss │ ├── frog │ │ ├── icon.scss │ │ ├── index.scss │ │ ├── mixin.scss │ │ └── table.scss │ ├── index.scss │ ├── sidebar.scss │ ├── transition.scss │ └── variables.scss ├── utils │ ├── commonUtils.js │ ├── dateUtils.js │ ├── regexUtils.js │ └── routerUtils.js └── views │ ├── common │ ├── About │ │ ├── a.vue │ │ ├── b.vue │ │ ├── c.vue │ │ ├── index.vue │ │ └── tip.vue │ ├── Home │ │ ├── index.vue │ │ └── tip.vue │ ├── Icon │ │ ├── icons.js │ │ ├── index.vue │ │ └── tip.vue │ ├── Playground │ │ ├── index.vue │ │ └── tip.vue │ └── Test │ │ ├── Chart │ │ └── index.vue │ │ ├── Table │ │ └── eTable.vue │ │ └── index.vue │ └── error │ ├── 403.vue │ ├── 404.vue │ └── index.vue └── vue.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/README.md -------------------------------------------------------------------------------- /alias.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/alias.config.js -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/.gitkeep: -------------------------------------------------------------------------------- 1 | keep folder 2 | -------------------------------------------------------------------------------- /src/api/process/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/api/process/common.js -------------------------------------------------------------------------------- /src/api/process/gp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/api/process/gp.js -------------------------------------------------------------------------------- /src/api/process/halm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/api/process/halm.js -------------------------------------------------------------------------------- /src/api/process/machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/api/process/machine.js -------------------------------------------------------------------------------- /src/api/process/signIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/api/process/signIn.js -------------------------------------------------------------------------------- /src/assets/ant-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/assets/ant-icon/index.js -------------------------------------------------------------------------------- /src/assets/font/Sketchalot.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/assets/font/Sketchalot.ttf -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/HelloWorld.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/HelloWorld.vue -------------------------------------------------------------------------------- /src/components/common/editableText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/common/editableText.vue -------------------------------------------------------------------------------- /src/components/excel/jsonToCsvButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/excel/jsonToCsvButton.vue -------------------------------------------------------------------------------- /src/components/frog-ui/chart/line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/frog-ui/chart/line.vue -------------------------------------------------------------------------------- /src/components/frog-ui/dateTimePicker/dateTimePicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/frog-ui/dateTimePicker/dateTimePicker.vue -------------------------------------------------------------------------------- /src/components/frog-ui/icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/frog-ui/icon/index.vue -------------------------------------------------------------------------------- /src/components/frog-ui/table/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/frog-ui/table/index.vue -------------------------------------------------------------------------------- /src/components/frogx-ui/debounceInput/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/components/frogx-ui/debounceInput/index.vue -------------------------------------------------------------------------------- /src/layout/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/index.vue -------------------------------------------------------------------------------- /src/layout/outside/appMain/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/appMain/index.vue -------------------------------------------------------------------------------- /src/layout/outside/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/index.vue -------------------------------------------------------------------------------- /src/layout/outside/modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/modal.vue -------------------------------------------------------------------------------- /src/layout/outside/tipbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/tipbar/index.vue -------------------------------------------------------------------------------- /src/layout/outside/toolbar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/toolbar/index.vue -------------------------------------------------------------------------------- /src/layout/outside/toolbar/sidebarActivator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/outside/toolbar/sidebarActivator.vue -------------------------------------------------------------------------------- /src/layout/sidebar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/sidebar/index.vue -------------------------------------------------------------------------------- /src/layout/sidebar/sidebarLogo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/sidebar/sidebarLogo/index.vue -------------------------------------------------------------------------------- /src/layout/sidebar/sidebarMenu/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/sidebar/sidebarMenu/index.vue -------------------------------------------------------------------------------- /src/layout/sidebar/sidebarMenu/sidebarMenuItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/layout/sidebar/sidebarMenu/sidebarMenuItem.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/main.js -------------------------------------------------------------------------------- /src/plugins/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/axios.js -------------------------------------------------------------------------------- /src/plugins/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/common.js -------------------------------------------------------------------------------- /src/plugins/element-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/element-ui.js -------------------------------------------------------------------------------- /src/plugins/frog-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/frog-ui.js -------------------------------------------------------------------------------- /src/plugins/vue-echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/vue-echarts.js -------------------------------------------------------------------------------- /src/plugins/xlsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/plugins/xlsx.js -------------------------------------------------------------------------------- /src/router/dynamicRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/router/dynamicRoutes.js -------------------------------------------------------------------------------- /src/router/error/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/router/error/index.js -------------------------------------------------------------------------------- /src/router/fullRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/router/fullRoutes.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/modules/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/modules/apps.js -------------------------------------------------------------------------------- /src/store/modules/permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/modules/permission.js -------------------------------------------------------------------------------- /src/store/modules/routeState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/modules/routeState.js -------------------------------------------------------------------------------- /src/store/modules/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/store/modules/style.js -------------------------------------------------------------------------------- /src/style/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/common.scss -------------------------------------------------------------------------------- /src/style/echarts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/echarts.scss -------------------------------------------------------------------------------- /src/style/element/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/element/index.scss -------------------------------------------------------------------------------- /src/style/element/table.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/style/frog/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/frog/icon.scss -------------------------------------------------------------------------------- /src/style/frog/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/frog/index.scss -------------------------------------------------------------------------------- /src/style/frog/mixin.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/style/frog/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/frog/table.scss -------------------------------------------------------------------------------- /src/style/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/index.scss -------------------------------------------------------------------------------- /src/style/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/sidebar.scss -------------------------------------------------------------------------------- /src/style/transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/transition.scss -------------------------------------------------------------------------------- /src/style/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/style/variables.scss -------------------------------------------------------------------------------- /src/utils/commonUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/utils/commonUtils.js -------------------------------------------------------------------------------- /src/utils/dateUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/utils/dateUtils.js -------------------------------------------------------------------------------- /src/utils/regexUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/utils/regexUtils.js -------------------------------------------------------------------------------- /src/utils/routerUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/utils/routerUtils.js -------------------------------------------------------------------------------- /src/views/common/About/a.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/About/a.vue -------------------------------------------------------------------------------- /src/views/common/About/b.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/About/b.vue -------------------------------------------------------------------------------- /src/views/common/About/c.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/About/c.vue -------------------------------------------------------------------------------- /src/views/common/About/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/About/index.vue -------------------------------------------------------------------------------- /src/views/common/About/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/About/tip.vue -------------------------------------------------------------------------------- /src/views/common/Home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Home/index.vue -------------------------------------------------------------------------------- /src/views/common/Home/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Home/tip.vue -------------------------------------------------------------------------------- /src/views/common/Icon/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Icon/icons.js -------------------------------------------------------------------------------- /src/views/common/Icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Icon/index.vue -------------------------------------------------------------------------------- /src/views/common/Icon/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Icon/tip.vue -------------------------------------------------------------------------------- /src/views/common/Playground/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Playground/index.vue -------------------------------------------------------------------------------- /src/views/common/Playground/tip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Playground/tip.vue -------------------------------------------------------------------------------- /src/views/common/Test/Chart/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Test/Chart/index.vue -------------------------------------------------------------------------------- /src/views/common/Test/Table/eTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Test/Table/eTable.vue -------------------------------------------------------------------------------- /src/views/common/Test/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/common/Test/index.vue -------------------------------------------------------------------------------- /src/views/error/403.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/error/403.vue -------------------------------------------------------------------------------- /src/views/error/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/error/404.vue -------------------------------------------------------------------------------- /src/views/error/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/src/views/error/index.vue -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarnishablec/frog-admin/HEAD/vue.config.js --------------------------------------------------------------------------------