Vue商品控件与购物车联动效果的实例代码

2020-06-14 06:26:32易采站长站整理

}
}
},
components: {
BScroll
}
};
</script>

<style>
.shopcart-wrapper {
width: 100%;
height: 51px;
background: #514f4f;
position: fixed;
left: 0;
bottom: 0;
display: flex;
z-index: 99;
}
.shopcart-wrapper.highligh {
background: #2d2b2a;
}

.shopcart-wrapper .content-left {
flex: 1;
}
.shopcart-wrapper .content-left .logo-wrapper {
width: 50px;
height: 50px;
background: #666666;
border-radius: 50%;
position: relative;
top: -14px;
left: 10px;
text-align: center;
float: left;
}
.shopcart-wrapper .content-left .logo-wrapper.highligh {
background: #ffd161;
}
.shopcart-wrapper .content-left .logo-wrapper .logo {
font-size: 28px;
color: #c4c4c4;
line-height: 50px;
}
.shopcart-wrapper .content-left .logo-wrapper .logo.highligh {
color: #2d2b2a;
}
.shopcart-wrapper .content-left .logo-wrapper .num {
width: 15px;
height: 15px;
line-height: 15px;
border-radius: 50%;
font-size: 9px;
color: white;
background: red;
position: absolute;
right: 0;
top: 0;
}
.shopcart-wrapper .content-left .desc-wrapper {
float: left;
margin-left: 13px;
}
.shopcart-wrapper .content-left .desc-wrapper .total-price {
font-size: 18px;
line-height: 33px;
color: white;
}
.shopcart-wrapper .content-left .desc-wrapper .tip {
font-size: 12px;
color: #bab9b9;
line-height: 51px;
}
.shopcart-wrapper .content-left .desc-wrapper .tip.highligh {
line-height: 12px;
}

.shopcart-wrapper .content-right {
flex: 0 0 110px;
font-size: 15px;
color: #bab9b9;
line-height: 51px;
text-align: center;
font-weight: bold;
}
.shopcart-wrapper .content-right.highligh {
background: #ffd161;
color: #2d2b2a;
}

.shopcart-wrapper .shopcart-list {
position: absolute;
left: 0;
top: 0;
z-index: -1;
width: 100%;
}
.shopcart-wrapper .shopcart-list.show {
transform: translateY(-100%);
}

.shopcart-wrapper .shopcart-list .list-top {
height: 30px;
text-align: center;
font-size: 11px;
background: #f3e6c6;
line-height: 30px;
color: #646158;
}

.shopcart-wrapper .shopcart-list .list-header {
height: 30px;
background: #f4f4f4;
}
.shopcart-wrapper .shopcart-list .list-header .title {
float: left;
border-left: 4px solid #53c123;
padding-left: 6px;
line-height: 30px;
font-size: 12px;
}
.shopcart-wrapper .shopcart-list .list-header .empty {
float: right;
line-height: 30px;
margin-right: 10px;
font-size: 0;
}
.shopcart-wrapper .shopcart-list .list-header .empty img {
height: 14px;
margin-right: 9px;