Commit 3b4ae4dc authored by 张伯涛's avatar 张伯涛

备案号

parent 16d69ca8
...@@ -7,11 +7,18 @@ ...@@ -7,11 +7,18 @@
<Header /> <Header />
</div> </div>
<div class="nav-container-two"> <div class="nav-container-two">
<div class="placeholder"></div> <div class="placeholder" />
<tags-view /> <tags-view />
<navbar /> <navbar />
</div> </div>
<app-main /> <app-main />
<div class="footer">
<div class="titleText">Copyrights © 2024 All Rights Reserved by</div>
<div class="text_body">
<div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div>
<div class="textTwo" @click="handleJumpTextTwo">津公网安备</div>
</div>
</div>
<right-panel> <right-panel>
<settings /> <settings />
</right-panel> </right-panel>
...@@ -57,6 +64,12 @@ export default { ...@@ -57,6 +64,12 @@ export default {
} }
}, },
methods: { methods: {
handleJumpTextOne() {
window.open('https://beian.miit.gov.cn/#/Integrated/index', '_blank')
},
handleJumpTextTwo() {
window.open('https://beian.mps.gov.cn/#/query/webSearch?code=', '_blank')
},
handleClickOutside() { handleClickOutside() {
this.$store.dispatch('app/closeSideBar', { withoutAnimation: false }) this.$store.dispatch('app/closeSideBar', { withoutAnimation: false })
} }
...@@ -65,5 +78,28 @@ export default { ...@@ -65,5 +78,28 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.footer{
width: 100%;
height: 80px;
background-color: #214E90;
.titleText{
padding: 15px 0;
text-align: center;
color: #FFFFFF;
}
.text_body{
display: flex;
justify-content: center;
.textOne{
cursor: pointer;
color: #FFFFFF;
padding: 0 15px;
}
.textTwo{
cursor: pointer;
color: #FFFFFF;
padding: 0 15px;
}
}
}
</style> </style>
...@@ -108,6 +108,13 @@ ...@@ -108,6 +108,13 @@
</el-form> </el-form>
<!-- 底部 --> <!-- 底部 -->
<div class="el-login-footer" /> <div class="el-login-footer" />
<div class="footer">
<div class="titleText">Copyrights © 2024 All Rights Reserved by</div>
<div class="text_body">
<div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div>
<div class="textTwo" @click="handleJumpTextTwo">津公网安备</div>
</div>
</div>
</div> </div>
</template> </template>
...@@ -154,6 +161,12 @@ export default { ...@@ -154,6 +161,12 @@ export default {
this.getCookie() this.getCookie()
}, },
methods: { methods: {
handleJumpTextOne() {
window.open('https://beian.miit.gov.cn/#/Integrated/index', '_blank')
},
handleJumpTextTwo() {
window.open('https://beian.mps.gov.cn/#/query/webSearch?code=', '_blank')
},
goDetail(path) { goDetail(path) {
this.$router.push({ this.$router.push({
path: path, path: path,
...@@ -576,3 +589,35 @@ export default { ...@@ -576,3 +589,35 @@ export default {
} }
</style> </style>
<style lang="scss" scoped>
.footer{
font-size: 14px;
width: 100%;
height: 80px;
background-color: #214E90;
position: fixed;
bottom: 0;
text-align: center;
color: #fff;
letter-spacing: 1px;
.titleText{
padding: 15px 0;
text-align: center;
color: #FFFFFF;
}
.text_body{
display: flex;
justify-content: center;
.textOne{
cursor: pointer;
color: #FFFFFF;
padding: 0 15px;
}
.textTwo{
cursor: pointer;
color: #FFFFFF;
padding: 0 15px;
}
}
}
</style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment