You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

116 lines
3.1 KiB

<template>
<div class="footer-box" :class="isTrue ? 'white' : 'blue'" style="margin-top:100px;position:relative">
<div v-if="!isTrue" class="other-link"></div>
<div class="content-1180">
<div class="d-flex" style="margin-top:20px" :class="isTrue ? '' : 'justify-center'">
<div class="footer-title">
<p style="font-size:24px;rgb(51,51,51);font-weight:bold;">网上展厅</p>
<p style="font-size:18px;rgb(102,102,102)">公示公告</p>
<p style="font-size:18px;rgb(102,102,102)">数字大唐</p>
</div>
<div class="footer-title">
<p style="font-size:24px;rgb(51,51,51);font-weight:bold;">网上服务</p>
<p style="font-size:18px;rgb(102,102,102)">人才招购</p>
<p style="font-size:18px;rgb(102,102,102)">招标采购</p>
</div>
<div class="footer-title">
<p style="font-size:24px;rgb(51,51,51);font-weight:bold;">资料下载</p>
<p style="font-size:18px;rgb(102,102,102)">责任报告</p>
<p style="font-size:18px;rgb(102,102,102)">企业VI</p>
</div>
<img src="./erweima.png" style="width:164px;height:94px" alt="" />
</div>
<div style="position:absolute;bottom:30px;z-index: 10;width:640px;" :style="{ left: isTrue ? '' : '38%' }">
<div class="d-flex">
<div style="margin-right:22px">
山西省朔州市朔城区神头镇 邮编:036002
</div>
<div class="d-flex align-center justify-center" style="margin-bottom: 10px">
<div>使用说明</div>
<div class="mx-2">|</div>
<div>法律声明</div>
<div class="mx-2">|</div>
<div>反馈留言</div>
</div>
<!-- <div style="margin-right:22px">
京ICP备18049784号-3
</div>
<div>
<img src="@/assets/baianicon.png" alt="" />
京公网安备11040102700144号
</div> -->
</div>
</div>
</div>
<img v-if="isTrue" src="./yancong.png" style="width:909px;height:412px;position: absolute;right: 0;bottom: 0" alt="" />
</div>
</template>
<script>
export default {
data() {
return {
isTrue: true,
str: '',
};
},
watch: {
'$route.path'(value) {
if (value === '/') {
this.isTrue = true;
} else {
this.isTrue = false;
}
},
},
methods: {},
};
</script>
<style scoped>
.other-link {
height: 80px;
width: 100%;
background-color: #0173a9;
position: absolute;
top: -80px;
left: 0;
z-index: 100;
}
.footer-box {
height: 320px;
padding: 30px 0;
position: relative;
}
.white {
background: #fff;
}
.blue {
background: rgb(0, 53, 107);
margin-top: 160px !important;
color: #ccc !important;
}
.footer-link {
height: 52px;
background: #a90500;
}
.footer-title {
width: 188px;
}
/deep/.ant-select-dropdown {
width: auto !important;
}
.footer-contact {
height: 252px;
background: #fff;
}
.footer-footer {
background: #4c4c4c;
height: 78px;
color: #898989;
text-align: center;
}
.beian {
height: 100%;
justify-content: space-evenly;
}
</style>