|
|
@ -2,13 +2,14 @@ |
|
|
<nav class="aui-navbar" |
|
|
<nav class="aui-navbar" |
|
|
:class="`aui-navbar--${$store.state.navbarLayoutType}`"> |
|
|
:class="`aui-navbar--${$store.state.navbarLayoutType}`"> |
|
|
<div class="aui-navbar__header"> |
|
|
<div class="aui-navbar__header"> |
|
|
<h1 class="aui-navbar__brand" |
|
|
<h1 class="aui-navbar__brand new" |
|
|
style="text-transform: none;" |
|
|
style="text-transform: none;" |
|
|
@click="$router.push({ name: 'home' })"> |
|
|
@click="$router.push({ name: 'home' })"> |
|
|
<a class="aui-navbar__brand-lg" |
|
|
<a class="aui-navbar__brand-lg" |
|
|
|
|
|
href="javascript:;">北尚诉办</a> |
|
|
|
|
|
<a class="aui-navbar__brand-lg new-top" |
|
|
href="javascript:;">{{ $t('brand.lg') }}</a> |
|
|
href="javascript:;">{{ $t('brand.lg') }}</a> |
|
|
<a class="aui-navbar__brand-mini" |
|
|
|
|
|
href="javascript:;">{{ $t('brand.mini') }}</a> |
|
|
|
|
|
</h1> |
|
|
</h1> |
|
|
</div> |
|
|
</div> |
|
|
<div class="aui-navbar__body"> |
|
|
<div class="aui-navbar__body"> |
|
|
@ -136,3 +137,20 @@ export default { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style scoped> |
|
|
|
|
|
.new{ |
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-direction:column; |
|
|
|
|
|
} |
|
|
|
|
|
.new a { |
|
|
|
|
|
font-size: 18px; |
|
|
|
|
|
} |
|
|
|
|
|
.new-top{ |
|
|
|
|
|
margin-top: 6px; |
|
|
|
|
|
font-size: 15px !important; |
|
|
|
|
|
} |
|
|
|
|
|
.aui-navbar__header_new h1{ |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
} |
|
|
|
|
|
</style> |
|
|
|