Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
B
basic-vue-admin
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
Basic
basic-vue-admin
Commits
e9536b5b
提交
e9536b5b
authored
10月 11, 2020
作者:
vben
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perf: the existing tab switching no longer displays animation and processbar
上级
526e6ce2
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
8 行增加
和
13 行删除
+8
-13
README.md
README.md
+1
-6
logo.png
src/assets/images/logo.png
+0
-0
index.less
src/design/var/index.less
+1
-1
index.ts
src/router/guard/index.ts
+4
-1
progressGuard.ts
src/router/guard/progressGuard.ts
+1
-4
Login.vue
src/views/sys/login/Login.vue
+1
-1
没有找到文件。
README.md
浏览文件 @
e9536b5b
...
...
@@ -202,11 +202,8 @@ yarn clean:lib # 删除node_modules,兼容window系统
-
[
x
]
页面加载 loading
-
[
x
]
滚动条组件
-
[
x
]
弹窗扩展(可拖拽,全屏,自适应高度)
-
[
x
]
全屏
-
[
x
]
模拟数据
-
[
x
]
剪贴板封装
-
[
x
]
hook 封装
-
[
x
]
项目可配置
-
[
x
]
表单组件
-
[
x
]
右键菜单
-
[
x
]
水印插件
...
...
@@ -214,12 +211,10 @@ yarn clean:lib # 删除node_modules,兼容window系统
-
[
x
]
二维码插件
-
[
x
]
国际化插件
-
[
x
]
详情组件
-
[
x
]
验证
码/验证
组件
-
[
x
]
验证组件
-
[
x
]
树组件
-
[
x
]
兼容最新
`vuex`
,
`vue-router`
-
[
x
]
图片预览组件
-
[
x
]
表格组件
-
[
x
]
可编辑表格
## 正在开发的功能
...
...
src/assets/images/logo.png
查看替换文件 @
526e6ce2
浏览文件 @
e9536b5b
3.9 KB
|
W:
|
H:
14.3 KB
|
W:
|
H:
2-up
Swipe
Onion skin
src/design/var/index.less
浏览文件 @
e9536b5b
...
...
@@ -9,7 +9,7 @@
@header-height: 42px;
// logo width
@logo-width:
32
px;
@logo-width:
40
px;
//
@sider-drag-z-index: 200;
...
...
src/router/guard/index.ts
浏览文件 @
e9536b5b
...
...
@@ -7,12 +7,15 @@ import { createProgressGuard } from './progressGuard';
import
{
createPermissionGuard
}
from
'./permissionGuard'
;
import
{
createPageLoadingGuard
}
from
'./pageLoadingGuard'
;
import
{
useSetting
}
from
'/@/hooks/core/useSetting'
;
import
{
getIsOpenTab
}
from
'/@/utils/helper/routeHelper'
;
const
{
projectSetting
}
=
useSetting
();
export
function
createGuard
(
router
:
Router
)
{
const
axiosCanceler
=
new
AxiosCanceler
();
router
.
beforeEach
(
async
()
=>
{
router
.
beforeEach
(
async
(
to
)
=>
{
const
isOpen
=
getIsOpenTab
(
to
.
path
);
to
.
meta
.
inTab
=
isOpen
;
try
{
Modal
.
destroyAll
();
notification
.
destroy
();
...
...
src/router/guard/progressGuard.ts
浏览文件 @
e9536b5b
...
...
@@ -2,16 +2,13 @@ import type { Router } from 'vue-router';
import
NProgress
from
'nprogress'
;
import
'nprogress/nprogress.css'
;
import
{
getIsOpenTab
}
from
'/@/utils/helper/routeHelper'
;
export
function
createProgressGuard
(
router
:
Router
)
{
// NProgress.inc(0.1);
// NProgress.configure({ easing: 'ease', speed: 200, showSpinner: false });
router
.
beforeEach
(
async
(
to
)
=>
{
const
isOpen
=
getIsOpenTab
(
to
.
path
);
to
.
meta
.
inTab
=
isOpen
;
!
isOpen
&&
NProgress
.
start
();
!
to
.
meta
.
inTab
&&
NProgress
.
start
();
return
true
;
});
router
.
afterEach
(
async
(
to
)
=>
{
...
...
src/views/sys/login/Login.vue
浏览文件 @
e9536b5b
...
...
@@ -173,7 +173,7 @@
img
{
display
:
inline-block
;
width
:
48
px
;
width
:
80
px
;
}
h1
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论