Commit e73daca5 authored by 张伯涛's avatar 张伯涛

样式调整

parent 3b4ae4dc
...@@ -16,7 +16,8 @@ ...@@ -16,7 +16,8 @@
<div class="titleText">Copyrights © 2024 All Rights Reserved by</div> <div class="titleText">Copyrights © 2024 All Rights Reserved by</div>
<div class="text_body"> <div class="text_body">
<div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div> <div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div>
<div class="textTwo" @click="handleJumpTextTwo">津公网安备</div> <img v-if="logo" :src="logo" class="bottomLogo">
<div class="textTwo" @click="handleJumpTextTwo">京公网安备</div>
</div> </div>
</div> </div>
<right-panel> <right-panel>
...@@ -44,6 +45,11 @@ export default { ...@@ -44,6 +45,11 @@ export default {
settings settings
}, },
mixins: [ResizeMixin], mixins: [ResizeMixin],
data() {
return {
logo: require('@/assets/image/policeDadgeIcon.png')
}
},
computed: { computed: {
sidebar() { sidebar() {
return this.$store.state.app.sidebar return this.$store.state.app.sidebar
...@@ -81,24 +87,27 @@ export default { ...@@ -81,24 +87,27 @@ export default {
.footer{ .footer{
width: 100%; width: 100%;
height: 80px; height: 80px;
background-color: #214E90; background-color: #F4F4F4;
.titleText{ .titleText{
padding: 15px 0; padding: 15px 0;
text-align: center; text-align: center;
color: #FFFFFF; color: black;
} }
.text_body{ .text_body{
display: flex; display: flex;
justify-content: center; justify-content: center;
.textOne{ .textOne{
cursor: pointer; cursor: pointer;
color: #FFFFFF; color: black;
padding: 0 15px; }
.bottomLogo{
width: 20px;
height: 20px;
margin: 0 10px;
} }
.textTwo{ .textTwo{
cursor: pointer; cursor: pointer;
color: #FFFFFF; color: black;
padding: 0 15px;
} }
} }
} }
......
...@@ -112,7 +112,8 @@ ...@@ -112,7 +112,8 @@
<div class="titleText">Copyrights © 2024 All Rights Reserved by</div> <div class="titleText">Copyrights © 2024 All Rights Reserved by</div>
<div class="text_body"> <div class="text_body">
<div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div> <div class="textOne" @click="handleJumpTextOne">京ICP备2024075637号-1</div>
<div class="textTwo" @click="handleJumpTextTwo">津公网安备</div> <img v-if="logo" :src="logo" class="bottomLogo">
<div class="textTwo" @click="handleJumpTextTwo">京公网安备</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -129,6 +130,7 @@ export default { ...@@ -129,6 +130,7 @@ export default {
components: { Verify }, components: { Verify },
data() { data() {
return { return {
logo: require('@/assets/image/policeDadgeIcon.png'),
reLocation: '', reLocation: '',
codeUrl: '', codeUrl: '',
cookiePassword: '', cookiePassword: '',
...@@ -611,12 +613,15 @@ export default { ...@@ -611,12 +613,15 @@ export default {
.textOne{ .textOne{
cursor: pointer; cursor: pointer;
color: #FFFFFF; color: #FFFFFF;
padding: 0 15px; }
.bottomLogo{
width: 20px;
height: 20px;
margin: 0 10px;
} }
.textTwo{ .textTwo{
cursor: pointer; cursor: pointer;
color: #FFFFFF; color: #FFFFFF;
padding: 0 15px;
} }
} }
} }
......
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