new
parents
Showing
with
4872 additions
and
0 deletions
.editorconfig
0 → 100644
.env.development
0 → 100644
.env.production
0 → 100644
.env.staging
0 → 100644
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.github/workflows/nodejs.yml
0 → 100644
.gitignore
0 → 100644
.travis.yml
0 → 100755
LICENSE
0 → 100644
README.md
0 → 100644
babel.config.js
0 → 100644
build/index.js
0 → 100644
jest.config.js
0 → 100644
jsconfig.json
0 → 100644
package.json
0 → 100644
| { | ||
| "name": "vue-element-admin", | ||
| "version": "4.2.1", | ||
| "description": "A magical vue admin. An out-of-box UI solution for enterprise applications. Newest development stack of vue. Lots of awesome features", | ||
| "author": "Pan <panfree23@gmail.com>", | ||
| "license": "MIT", | ||
| "scripts": { | ||
| "dev": "vue-cli-service serve", | ||
| "build:prod": "vue-cli-service build", | ||
| "build:stage": "vue-cli-service build --mode staging", | ||
| "preview": "node build/index.js --preview", | ||
| "lint": "eslint --ext .js,.vue src", | ||
| "test:unit": "jest --clearCache && vue-cli-service test:unit", | ||
| "test:ci": "npm run lint && npm run test:unit", | ||
| "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml", | ||
| "new": "plop" | ||
| }, | ||
| "husky": { | ||
| "hooks": { | ||
| "pre-commit": "lint-staged" | ||
| } | ||
| }, | ||
| "lint-staged": { | ||
| "src/**/*.{js,vue}": [ | ||
| "eslint --fix", | ||
| "git add" | ||
| ] | ||
| }, | ||
| "keywords": [ | ||
| "vue", | ||
| "admin", | ||
| "dashboard", | ||
| "element-ui", | ||
| "boilerplate", | ||
| "admin-template", | ||
| "management-system" | ||
| ], | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/wenjianzhang/go-admin.git" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/wenjianzhang/go-admin/issues" | ||
| }, | ||
| "dependencies": { | ||
| "@riophae/vue-treeselect": "0.4.0", | ||
| "axios": "0.18.1", | ||
| "clipboard": "2.0.4", | ||
| "codemirror": "5.45.0", | ||
| "core-js": "^2.6.11", | ||
| "driver.js": "0.9.5", | ||
| "dropzone": "5.5.1", | ||
| "echarts": "4.2.1", | ||
| "element-ui": "2.11.1", | ||
| "file-saver": "2.0.1", | ||
| "fuse.js": "3.4.4", | ||
| "js-cookie": "2.2.0", | ||
| "jsonlint": "1.6.3", | ||
| "jszip": "3.2.1", | ||
| "monaco-editor": "^0.20.0", | ||
| "normalize.css": "7.0.0", | ||
| "nprogress": "0.2.0", | ||
| "path-to-regexp": "2.4.0", | ||
| "screenfull": "4.2.0", | ||
| "showdown": "^1.9.1", | ||
| "solarlunar": "^2.0.7", | ||
| "sortablejs": "1.8.4", | ||
| "tui-editor": "1.3.3", | ||
| "vue": "2.6.10", | ||
| "vue-count-to": "1.0.13", | ||
| "vue-cropper": "^0.5.0", | ||
| "vue-router": "3.0.2", | ||
| "vue-splitpane": "1.0.4", | ||
| "vuedraggable": "2.20.0", | ||
| "vuex": "3.1.0", | ||
| "xlsx": "0.14.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@babel/core": "7.0.0", | ||
| "@babel/register": "^7.9.0", | ||
| "@vue/cli-plugin-babel": "3.5.3", | ||
| "@vue/cli-plugin-eslint": "^3.9.1", | ||
| "@vue/cli-plugin-unit-jest": "3.5.3", | ||
| "@vue/cli-service": "3.5.3", | ||
| "@vue/test-utils": "1.0.0-beta.29", | ||
| "autoprefixer": "^9.5.1", | ||
| "babel-core": "7.0.0-bridge.0", | ||
| "babel-eslint": "10.0.1", | ||
| "babel-jest": "23.6.0", | ||
| "beautifier": "^0.1.7", | ||
| "chalk": "2.4.2", | ||
| "chokidar": "2.1.5", | ||
| "connect": "3.6.6", | ||
| "eslint": "5.15.3", | ||
| "eslint-plugin-vue": "5.2.2", | ||
| "html-webpack-plugin": "3.2.0", | ||
| "husky": "1.3.1", | ||
| "lint-staged": "8.1.5", | ||
| "mockjs": "1.0.1-beta3", | ||
| "monaco-editor-webpack-plugin": "^1.9.0", | ||
| "node-sass": "^4.13.1", | ||
| "plop": "2.3.0", | ||
| "runjs": "^4.3.2", | ||
| "sass-loader": "^7.1.0", | ||
| "script-ext-html-webpack-plugin": "2.1.3", | ||
| "script-loader": "0.7.2", | ||
| "serve-static": "^1.13.2", | ||
| "svg-sprite-loader": "4.1.3", | ||
| "svgo": "1.2.0", | ||
| "vue-template-compiler": "2.6.10" | ||
| }, | ||
| "engines": { | ||
| "node": ">=8.9", | ||
| "npm": ">= 3.0.0" | ||
| }, | ||
| "browserslist": [ | ||
| "> 1%", | ||
| "last 2 versions" | ||
| ] | ||
| } |
plop-templates/component/index.hbs
0 → 100644
plop-templates/component/prompt.js
0 → 100644
plop-templates/store/index.hbs
0 → 100644
plop-templates/store/prompt.js
0 → 100644
plop-templates/utils.js
0 → 100644
plop-templates/view/index.hbs
0 → 100644
plop-templates/view/prompt.js
0 → 100644
plopfile.js
0 → 100644
postcss.config.js
0 → 100644
public/favicon.ico
0 → 100644
File added
public/index.html
0 → 100644
src/App.vue
0 → 100644
src/api/login.js
0 → 100644
src/api/monitor/server.js
0 → 100644
src/api/remote-search.js
0 → 100644
src/api/system/dept.js
0 → 100644
src/api/system/loginlog.js
0 → 100644
src/api/system/menu.js
0 → 100644
src/api/system/post.js
0 → 100644
src/api/system/role.js
0 → 100644
src/api/system/sysuser.js
0 → 100644
src/api/user.js
0 → 100644
src/assets/401_images/401.gif
0 → 100644
160 KB
src/assets/404_images/404.png
0 → 100644
95.8 KB
src/assets/404_images/404_cloud.png
0 → 100644
4.65 KB
File added
File added
src/assets/custom-theme/index.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
src/assets/logo/logo.png
0 → 100644
10.3 KB
src/components/BackToTop/index.vue
0 → 100644
src/components/Breadcrumb/index.vue
0 → 100644
src/components/Charts/Keyboard.vue
0 → 100644
src/components/Charts/LineMarker.vue
0 → 100644
src/components/Charts/MixChart.vue
0 → 100644
src/components/Charts/mixins/resize.js
0 → 100644
src/components/DndList/index.vue
0 → 100644
src/components/DragSelect/index.vue
0 → 100644
src/components/Dropzone/index.vue
0 → 100644
src/components/ErrorLog/index.vue
0 → 100644
src/components/GithubCorner/index.vue
0 → 100644
src/components/Go-Admin/Doc/index.vue
0 → 100644
src/components/Go-Admin/Donate/index.vue
0 → 100644
src/components/Go-Admin/Git/index.vue
0 → 100644
src/components/Hamburger/index.vue
0 → 100644
src/components/HeaderSearch/index.vue
0 → 100644
src/components/IconSelect/index.vue
0 → 100644
src/components/IconSelect/requireIcons.js
0 → 100644
src/components/ImageCropper/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/ImageCropper/utils/mimes.js
0 → 100755
src/components/JsonEditor/index.vue
0 → 100644
src/components/Kanban/index.vue
0 → 100644
src/components/MDinput/index.vue
0 → 100644
src/components/MarkdownEditor/index.vue
0 → 100644
src/components/Pagination/index.vue
0 → 100644
src/components/PanThumb/index.vue
0 → 100644
src/components/RightPanel/index.vue
0 → 100644
src/components/Screenfull/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Share/DropdownMenu.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/SizeSelect/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Sticky/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/SvgIcon/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/TextHoverEffect/Mallki.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/ThemePicker/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
src/components/Tinymce/dynamicLoadScript.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Tinymce/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Tinymce/plugins.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Tinymce/toolbar.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Upload/SingleImage.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Upload/SingleImage2.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/Upload/SingleImage3.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/components/UploadExcel/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/clipboard/clipboard.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/clipboard/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/el-drag-dialog/drag.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/el-drag-dialog/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/el-table/adaptive.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/el-table/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/permission/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/permission/permisaction.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/permission/permission.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/sticky.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/waves/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/waves/waves.css
0 → 100644
This diff is collapsed.
Click to expand it.
src/directive/waves/waves.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/filters/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/404.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/bug.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/build.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/calendar.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/cascader.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/chart.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/checkbox.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/clipboard.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/code.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/color.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/component.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/dashboard.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/date-range.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/date.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/dict.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/documentation.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/download.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/drag copy.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/drag.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/druid.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/edit.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/education.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/email.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/example.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/excel.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/exit-fullscreen.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/eye-open.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/eye.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/form.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/fullscreen.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/github.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/guide.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/heart.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/icon.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/input.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/international.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/job.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/language.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/link.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/list.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/lock.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/log.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/logininfor.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/message.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/money.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/monitor.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/nested.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/network.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/number.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/online.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/pass.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/password.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/pdf.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/people.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/peoples.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/phone.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/post.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/qq.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/question.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/radio.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/rate.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/row.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/search.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/select.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/server.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/shopping.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/size.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/skill.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/slider.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/star.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/swagger.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/switch.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/system.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/tab.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/table.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/textarea.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/theme.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/time-range.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/time.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/tool.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/tree-table.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/tree.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/upload.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/user.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/validCode.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/vip.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/wechat.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svg/zip.svg
0 → 100644
This diff is collapsed.
Click to expand it.
src/icons/svgo.yml
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/AppMain.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Navbar.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Settings/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Sidebar/FixiOSBug.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Sidebar/Item.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Sidebar/Link.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/Sidebar/Logo.vue
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
src/layout/components/Sidebar/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
src/layout/components/TagsView/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/components/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/layout/mixin/ResizeHandler.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/main.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/permission.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/router/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/router/modules/charts.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/router/modules/components.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/router/modules/nested.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/router/modules/table.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/settings.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/getters.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/errorLog.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/permission.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/settings.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/tagsView.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/store/modules/user.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/admin.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/btn.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/element-ui.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/element-variables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/index.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/mixin.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/sidebar.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/transition.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/styles/variables.scss
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/auth.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/clipboard.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/costum.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/error-log.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/config.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/css.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/drawingDefalut.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/html.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/icon.json
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/js.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/generator/render.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/get-page-title.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/index.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/open-window.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/permission.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/request.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/scroll-to.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/validate.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/utils/zipdownload.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/vendor/Export2Excel.js
0 → 100644
This diff is collapsed.
Click to expand it.
src/vendor/Export2Zip.js
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
src/views/dashboard/admin/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/dashboard/editor/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/dashboard/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/dept/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/error-page/401.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/error-page/404.vue
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
src/views/excel/upload-excel.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/log/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/login/auth-redirect.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/login/components/SocialSignin.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/login/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/loginlog/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/menu/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/monitor/server/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/post/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/components/Account.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/components/Activity.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/components/Timeline.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/components/UserCard.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/resetPwd.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/userAvatar.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/profile/userInfo.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/redirect/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/role/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
src/views/sysuser/index.vue
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/.eslintrc.js
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/components/Hamburger.spec.js
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/components/SvgIcon.spec.js
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/utils/formatTime.spec.js
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/utils/parseTime.spec.js
0 → 100644
This diff is collapsed.
Click to expand it.
tests/unit/utils/validate.spec.js
0 → 100644
This diff is collapsed.
Click to expand it.
vue.config.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment