|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <div class="footer-nav">
|
|
|
|
|
|
+ <div :class=" slice_type ? 'footer-nav' : 'footer-nav-online' ">
|
|
<div class="container">
|
|
<div class="container">
|
|
<el-row>
|
|
<el-row>
|
|
<el-col :span="5" class="nav-logo-block">
|
|
<el-col :span="5" class="nav-logo-block">
|
|
@@ -30,6 +30,7 @@
|
|
|
|
|
|
<script>
|
|
<script>
|
|
import {CONFIG} from "../../config";
|
|
import {CONFIG} from "../../config";
|
|
|
|
+import {slice_type} from "../../../tool4deploy/slider-type";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "Footer2.0",
|
|
name: "Footer2.0",
|
|
@@ -43,6 +44,7 @@ export default {
|
|
footer_fax:CONFIG.footer_fax,
|
|
footer_fax:CONFIG.footer_fax,
|
|
footer_email:CONFIG.footer_email,
|
|
footer_email:CONFIG.footer_email,
|
|
footer_QRcode:CONFIG.footer_QRcode,
|
|
footer_QRcode:CONFIG.footer_QRcode,
|
|
|
|
+ slice_type
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -50,6 +52,7 @@ export default {
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|
|
@import "../../style/main";
|
|
@import "../../style/main";
|
|
|
|
+
|
|
.footer-nav{
|
|
.footer-nav{
|
|
height: 120px;
|
|
height: 120px;
|
|
background:$--color-primary;
|
|
background:$--color-primary;
|
|
@@ -58,6 +61,14 @@ export default {
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
font-family:Source Han Sans CN;
|
|
font-family:Source Han Sans CN;
|
|
}
|
|
}
|
|
|
|
+ .footer-nav-online{
|
|
|
|
+ height: 120px;
|
|
|
|
+ background:$--color-footer-background;;
|
|
|
|
+ color: $--color-title-color;
|
|
|
|
+ padding: 30px 0;
|
|
|
|
+ font-size: 14px;
|
|
|
|
+ font-family:Source Han Sans CN;
|
|
|
|
+ }
|
|
.nav-title{
|
|
.nav-title{
|
|
display: inline-block;
|
|
display: inline-block;
|
|
}
|
|
}
|