ruoyi-ui/package.json | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/components/Breadcrumb/index.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/components/RuoYi/Doc/index.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/components/RuoYi/Git/index.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/components/SizeSelect/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/layout/components/Sidebar/Logo.vue | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/layout/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/main.js | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/plugins/download.js | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/router/index.js | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/store/modules/permission.js | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/store/modules/settings.js | 补丁 | 查看 | 原始文档 | blame | 历史 | |
ruoyi-ui/src/store/modules/user.js | 补丁 | 查看 | 原始文档 | blame | 历史 |
ruoyi-ui/package.json
@@ -55,7 +55,7 @@ "vue": "2.6.12", "vue-count-to": "1.0.13", "vue-cropper": "0.5.5", "vue-meta": "^2.4.0", "vue-meta": "2.4.0", "vue-router": "3.4.9", "vuedraggable": "2.24.3", "vuex": "3.6.0" ruoyi-ui/src/components/Breadcrumb/index.vue
ruoyi-ui/src/components/RuoYi/Doc/index.vue
ruoyi-ui/src/components/RuoYi/Git/index.vue
ruoyi-ui/src/components/SizeSelect/index.vue
@@ -5,8 +5,7 @@ </div> <el-dropdown-menu slot="dropdown"> <el-dropdown-item v-for="item of sizeOptions" :key="item.value" :disabled="size===item.value" :command="item.value"> {{ item.label }} {{ item.label }} </el-dropdown-item> </el-dropdown-menu> </el-dropdown> ruoyi-ui/src/layout/components/Sidebar/Logo.vue
ruoyi-ui/src/layout/index.vue
@@ -98,7 +98,7 @@ } .hideSidebar .fixed-header { width: calc(100% - 54px) width: calc(100% - 54px); } .mobile .fixed-header { ruoyi-ui/src/main.js
ruoyi-ui/src/plugins/download.js
@@ -15,7 +15,7 @@ responseType: 'blob', headers: { 'Authorization': 'Bearer ' + getToken() } }).then(async (res) => { const isLogin = await this.blobValidate(res.data); const isLogin = await blobValidate(res.data); if (isLogin) { const blob = new Blob([res.data]) this.saveAs(blob, decodeURI(res.headers['download-filename'])) @@ -32,7 +32,7 @@ responseType: 'blob', headers: { 'Authorization': 'Bearer ' + getToken() } }).then(async (res) => { const isLogin = await this.blobValidate(res.data); const isLogin = await blobValidate(res.data); if (isLogin) { const blob = new Blob([res.data]) this.saveAs(blob, decodeURI(res.headers['download-filename'])) ruoyi-ui/src/router/index.js
ruoyi-ui/src/store/modules/permission.js
@@ -1,7 +1,7 @@ import { constantRoutes } from '@/router' import { getRouters } from '@/api/menu' import Layout from '@/layout/index' import ParentView from '@/components/ParentView'; import ParentView from '@/components/ParentView' import InnerLink from '@/layout/components/InnerLink' const permission = { ruoyi-ui/src/store/modules/settings.js
ruoyi-ui/src/store/modules/user.js