mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-15 05:46:43 +08:00
75 lines
1.6 KiB
Vue
75 lines
1.6 KiB
Vue
<template>
|
|
<div class="portal-footer" >
|
|
<!-- :style="`background-image:url(${this.webBaseUrl}/images/bg_foot.png)`" -->
|
|
<div class="center">
|
|
<div class="center-img1" style="margin-left: 100px;">
|
|
<!-- <img :src="`${this.webBaseUrl}/images/foot_center.png`"/> -->
|
|
</div>
|
|
<div class="center-img2">
|
|
<!-- <img :src="`${this.webBaseUrl}/images/foot_code.png`"/> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
components: {
|
|
|
|
},
|
|
mounted() {
|
|
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
Jump(num) {
|
|
if(num ==1) {//文库
|
|
window.open('https://u.boe.com/web/treasury', '_blank');
|
|
} else if(num ==2) {// ITC专区
|
|
window.open('https://u.boe.com/web/index', '_blank');
|
|
} else if(num ==3) {//日志群
|
|
window.open('https://u.boe.com/boe/weilog/index.html', '_blank');
|
|
}else if(num ==4) {//读书会
|
|
window.open('https://u.boe.com/train/manager/index.html', '_blank');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.portal-footer {
|
|
//background-color: #cceaff;
|
|
position: relative;
|
|
margin-top: 30px;
|
|
box-sizing: border-box;
|
|
//height: 300px;
|
|
//background-image: url(/pc/images/bg_foot.png);
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size:cover;
|
|
.center {
|
|
//min-width: 1366px;
|
|
//max-width: 1500px;
|
|
width: 1000px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0 auto;
|
|
.center-img1{
|
|
padding-top: 50px;
|
|
}
|
|
.center-img2{
|
|
padding-top: 50px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|