Merge branch 'dev-3.6' of https://git.mesalab.cn/nezha/nezha-fronted into dev-3.7

This commit is contained in:
zhangyu
2023-03-10 10:47:55 +08:00
3 changed files with 6 additions and 3 deletions

View File

@@ -64,7 +64,7 @@
padding: 0 3px 0 13px;
}
.alert-label-value{
height: 26px;
min-height: 26px;
font-size: 14px;
color: $--color-text-primary;
letter-spacing: 0;

View File

@@ -31,7 +31,7 @@
margin-left: 5px;
}
.alert-label-value{
height: 26px;
min-height: 26px;
font-size: 14px;
color: $--color-text-primary;
letter-spacing: 0;

View File

@@ -147,7 +147,10 @@ const user = {
if (sessionStorage.getItem('nz-previous-page') && noJumpPath.indexOf(sessionStorage.getItem('nz-previous-page')) === -1) {
const route = sessionStorage.getItem('nz-previous-page')
router.push({
path: route
path: route,
query: {
t: +new Date()
}
}).then(() => {
sessionStorage.removeItem('nz-previous-page')
})