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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< template >
< div class = "layout-footer" >
< div class = "layout-footer-wrap" >
< div class = "layout-footer-wrap__promise flex flex-middle flex-between" >
< div
v-for ="(item, index) in promiseList"
:key="index"
class="wrap-promise-item"
>
<img :src="item.icon" />
<span>{{ item.label }}</span>
</div>
</div>
<div class="layout-footer-wrap__line"></div>
<div class="layout-footer-wrap__address" >
© 2020 马 士 兵 ( 北 京 ) 教 育 科 技 有 限 公 司
地 址 : 北 京 市 海 淀 区 北 三 环 中 路 44 号 4 号 楼 1 层 114 京 ICP 备 17012835 号 -1
< / div >
< / div >
< / div >
< / template >
< script >
export default {
name : "LayoutFooter" ,
data ( ) {
return {
promiseList : [
{
label : "马士兵严选" ,
icon : require ( "~/assets/img/layout/footer-1.png" ) ,
} ,
{
label : "马士兵严选" ,
icon : require ( "~/assets/img/layout/footer-2.png" ) ,
} ,
{
label : "马士兵严选" ,
icon : require ( "~/assets/img/layout/footer-3.png" ) ,
} ,
{
label : "马士兵严选" ,
icon : require ( "~/assets/img/layout/footer-4.png" ) ,
} ,
] ,
} ;
} ,
} ;
< / script >
< style lang = "scss" scoped >
. layout - footer {
height : 189 px ;
background : # dddddd ;
. layout - footer - wrap {
. layout - footer - wrap _ _promise {
width : 1060 px ;
margin : 0 auto ;
padding : 25 px 0 ;
. wrap - promise - item {
font - weight : bold ;
color : # 999999 ;
font - size : 18 px ;
margin - left : 20 px ;
img {
width : 52 px ;
height : 52 px ;
}
}
}
. layout - footer - wrap _ _line {
width : 100 % ;
height : 1 px ;
background : # cccccc ;
}
. layout - footer - wrap _ _address {
width : 500 px ;
margin : 0 auto ;
padding : 20 px 0 ;
font - size : 12 px ;
color : # 797979 ;
text - align : center ;
}
}
}
< / style >