Vue商品控件與購物車聯(lián)動效果的實(shí)例代碼
本篇我們將構(gòu)建商品控件與購物車聯(lián)動。
商品控件
商品控件的結(jié)構(gòu)編寫
在商品組件的<template>標(biāo)簽內(nèi)完成項(xiàng)目結(jié)構(gòu),以及數(shù)據(jù),事件的綁定,與判斷邏輯的書寫。
<template>
<div class="goods">
<div class="menu-wrapper" ref="menuScroll">
<ul>
<!--專場-->
<li class="menu-item" :class="{'current':currentIndex===0}" @click="selectMenu(0)">
<p class="text">
<img :src="container.tag_icon" v-if="container.tag_icon" class="icon">
{{container.tag_name}}
</p>
</li>
<li
class="menu-item"
v-for="(item,index) in goods"
:class="{'current':currentIndex===index+1}"
@click="selectMenu(index+1)"
>
<p class="text">
<img :src="item.icon" v-if="item.icon" class="icon">
{{item.name}}
</p>
</li>
</ul>
</div>
<!-- 右側(cè)商品列表 -->
<div class="foods-wrapper" ref="foodScroll">
<!--專場-->
<ul>
<li class="container-list food-list-hook">
<div v-for="item in container.operation_source_list">
<img :src="item.pic_url">
</div>
</li>
<!-- 具體分類-->
<li v-for="item in goods" class="food-list food-list-hook">
<h3 class="title">{{item.name}}</h3>
<!--具體商品列表-->
<ul>
<li v-for="food in item.spus" class="food-item">
<div class="icon" :style="head_bg(food.picture)"></div>
<div class="content">
<h3 class="name">{{food.name}}</h3>
<p class="desc" v-if="food.description">{{food.description}}</p>
<div class="extra">
<span class="saled">{{food.month_saled_content}}</span>
<span class="praise">{{food.praise_content}}</span>
</div>
<img
class="product"
:src="food.product_label_picture"
v-show="food.product_label_picture"
>
<p class="price">
<span class="text">¥{{food.min_price}}</span>
<span class="unit">/{{food.unit}}</span>
</p>
</div>
<div class="cartcontrol-wrapper">
<Cartcontrol :food="food"></Cartcontrol>
</div>
</li>
</ul>
</li>
</ul>
</div>
<Shopcart :poiInfo="poiInfo" :selectFoods="selectFoods"></Shopcart>
</div>
</template>
Shopcart組件是Goods組件的子組件,在Shopcart組件初始化的時(shí)候我們可以傳入給其參數(shù)poiInfo selectFoods.
請求數(shù)據(jù),聲明方法與計(jì)算屬性
<script>
import BScroll from "better-scroll";//滾動組件
import Shopcart from "components/Shopcart/Shopcart";//購物車
import Cartcontrol from "components/Cartcontrol/Cartcontrol";//控制商品數(shù)量按鈕
export default {
data() {
return {
container: {},
goods: [],
poiInfo: {},
listHeight: [],
menuScroll: {},
foodScroll: {},
scrollY: 0
};
},
components: {
BScroll,//引入組件
Shopcart,
Cartcontrol
},
created() {
this.$axios
.get("api/goods")
.then(response => {
let json = response.data;
if (json.code === 0) {
// 重點(diǎn)
this.container = json.data.container_operation_source;
this.goods = json.data.food_spu_tags;
this.poiInfo = json.data.poi_info;
this.$nextTick(function() {
this.initScroll();
// 左右聯(lián)動
// 右->左
// 計(jì)算區(qū)間
this.caculateHeight();
});
}
})
.catch(function(error) {
// handle error
console.log(error);
});
},
computed: {
// 根據(jù)右側(cè)判斷左側(cè)index
currentIndex() {
for (let i = 0; i < this.listHeight.length; i++) {
let start = this.listHeight[i];
let end = this.listHeight[i + 1];
if (this.scrollY >= start && this.scrollY < end) {
return i;
}
}
return 0;
},
selectFoods() {
let foods = [];
this.goods.forEach(good => {
good.spus.forEach(food => {
if (food.count > 0) {
foods.push(food);
}
});
});
return foods;
}
},
methods: {
head_bg(imgName) {
return "background-image: url(" + imgName + ");";
},
initScroll() {
this.menuScroll = new BScroll(this.$refs.menuScroll, {
click: true
});
this.foodScroll = new BScroll(this.$refs.foodScroll, {
probeType: 3,
click: true
});
this.foodScroll.on("scroll", pos => {
this.scrollY = Math.abs(Math.round(pos.y));
});
},
caculateHeight() {
let foodList = this.$refs.foodScroll.getElementsByClassName(
"food-list-hook"
);//獲取到dom元素
let height = 0;
this.listHeight.push(height);
for (let i = 0; i < foodList.length; i++) {
height += foodList[i].clientHeight;
this.listHeight.push(height);
}
// [0, 215, 1343, 2425, 3483, 4330, 5823, 7237, 8022, 8788, 9443]
},
selectMenu(index) {
let foodlist = this.$refs.foodScroll.getElementsByClassName(
"food-list-hook"
);
// 根據(jù)下標(biāo),滾動到相對應(yīng)的元素
let el = foodlist[index];
// 滾動到對應(yīng)元素的位置
this.foodScroll.scrollToElement(el, 100);
}
}
};
</script>
定義商品組件的樣式
<style scoped>
.goods {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
position: absolute;
top: 190px;
bottom: 51px;
overflow: hidden;
width: 100%;
}
.goods .menu-wrapper {
-webkit-box-flex: 0;
-ms-flex: 0 0 85px;
flex: 0 0 85px;
background: #f4f4f4;
}
.goods .menu-wrapper .menu-item {
padding: 16px 23px 15px 10px;
border-bottom: 1px solid #e4e4e4;
position: relative;
}
.goods .menu-wrapper .menu-item.current {
background: white;
font-weight: bold;
margin-top: -1px;
}
.goods .menu-wrapper .menu-item:first-child.current {
margin-top: 1px;
}
.goods .menu-wrapper .menu-item .text {
font-size: 13px;
color: #333333;
line-height: 17px;
vertical-align: middle;
-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}
.goods .menu-wrapper .menu-item .text .icon {
width: 15px;
height: 15px;
vertical-align: middle;
}
.goods .menu-wrapper .menu-item .num {
position: absolute;
right: 5px;
top: 5px;
width: 13px;
height: 13px;
border-radius: 50%;
color: white;
background: red;
text-align: center;
font-size: 7px;
line-height: 13px;
}
.goods .foods-wrapper {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
/* background: blue; */
}
.goods .foods-wrapper .container-list {
padding: 11px 11px 0 11px;
border-bottom: 1px solid #e4e4e4;
}
.goods .foods-wrapper .container-list img {
width: 100%;
margin-bottom: 11px;
border-radius: 5px;
}
.goods .foods-wrapper .food-list {
padding: 11px;
}
.goods .foods-wrapper .food-list .title {
height: 13px;
font-size: 13px;
background: url(btn_yellow_highlighted@2x.png) no-repeat left center;
background-size: 2px 10px;
padding-left: 7px;
margin-bottom: 12px;
}
.goods .foods-wrapper .food-list .food-item {
display: flex;
margin-bottom: 25px;
position: relative;
}
.goods .foods-wrapper .food-list .food-item .icon {
flex: 0 0 63px;
background-position: center;
background-size: 120% 100%;
background-repeat: no-repeat;
margin-right: 11px;
height: 75px;
}
.goods .foods-wrapper .food-list .food-item .content {
flex: 1;
}
.goods .foods-wrapper .food-list .food-item .content .name {
font-size: 16px;
line-height: 21px;
color: #333333;
margin-bottom: 10px;
padding-right: 27px;
}
.goods .foods-wrapper .food-list .food-item .content .desc {
font-size: 10px;
line-height: 19px;
color: #bfbfbf;
margin-bottom: 8px;
/* 超出部分顯示省略號*/
-webkit-line-clamp: 1;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
}
.goods .foods-wrapper .food-list .food-item .content .extra {
font-size: 10px;
color: #bfbfbf;
margin-bottom: 7px;
}
.goods .foods-wrapper .food-list .food-item .content .extra .saled {
margin-right: 14px;
}
.goods .foods-wrapper .food-list .food-item .content .product {
height: 15px;
margin-bottom: 6px;
}
.goods .foods-wrapper .food-list .food-item .content .price {
font-size: 0;
}
.goods .foods-wrapper .food-list .food-item .content .price .text {
font-size: 14px;
color: #fb4e44;
}
.goods .foods-wrapper .food-list .food-item .content .price .unit {
font-size: 12px;
color: #bfbfbf;
}
</style>
商品數(shù)量控制組件
這里用了vue動畫
cart-decrease類為商品數(shù)量減少結(jié)構(gòu)。 使用指令v-show控制其顯隱。有商品數(shù)量的時(shí)候會按照規(guī)定動畫進(jìn)行顯示,反之則隱藏。
cart-count類為選中的商品數(shù)量。
cart-add類為商品數(shù)量增加結(jié)構(gòu)。
通過vue全局api set進(jìn)行第一次點(diǎn)擊增加商品按鈕時(shí)候的設(shè)置。
https://cn.vuejs.org/v2/api/#...
<template>
<div class="cartcontrol">
<transition name="move">
<div class="cart-decrease" @click="decreaseCart" v-show="food.count">
<span class="inner icon-remove_circle_outline"></span>
</div>
</transition>
<div class="cart-count" v-show="food.count">{{food.count}}</div>
<div class="cart-add icon-add_circle" @click="increaseCart">
<i class="bg"></i>
</div>
</div>
</template>
<script>
import Vue from 'vue'
export default {
props:{
food:{
type:Object
}
},
methods:{
decreaseCart(){
this.food.count--;
},
increaseCart(){
if(!this.food.count){
Vue.set(this.food,'count',1);
}else{
this.food.count++;
}
}
}
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
.cartcontrol {
font-size: 0;
}
.cartcontrol .cart-decrease {
display: inline-block;
width: 26px;
height: 26px;
font-size: 26px;
color: #b4b4b4;
}
.cartcontrol .cart-count {
display: inline-block;
width: 25px;
text-align: center;
font-size: 12px;
line-height: 26px;
vertical-align: top;
}
.cartcontrol .cart-add {
display: inline-block;
width: 26px;
height: 26px;
font-size: 26px;
color: #ffd161;
position: relative;
}
.cartcontrol .cart-add .bg {
width: 20px;
height: 20px;
border-radius: 50%;
background: black;
position: absolute;
left: 3px;
top: 3px;
z-index: -1;
}
.move-enter-active,
.move-leave-active {
transition: all 0.5s linear;
}
.move-enter,
.move-leave-to {
transform: translateX(20px) rotate(180deg);
}
</style>
購物車組件
我們現(xiàn)在創(chuàng)建shopcart購物車組件。
<template>
<div class="shopcart" :class="{'highligh':totalCount>0}">
<div class="shopcart-wrapper">
<div class="content-left">
<div class="logo-wrapper" :class="{'highligh':totalCount>0}">
<span class="icon-shopping_cart logo" :class="{'highligh':totalCount>0}"></span>
<i class="num" v-show="totalCount">{{totalCount}}</i>
</div>
<div class="desc-wrapper">
<p class="total-price" v-show="totalPrice">¥{{totalPrice}}</p>
<p class="tip" :class="{'highligh':totalCount>0}">另需{{shipping_fee_tip}}</p>
</div>
</div>
<div class="content-right" :class="{'highligh':totalCount>0}">{{payStr}}</div>
</div>
</div>
</template>
<script>
// 導(dǎo)入BScroll
import BScroll from "better-scroll";
export default {
props: {
min_price_tip: {
type: String,
default: ""
},
shipping_fee_tip: {
type: String,
default: ""
},
selectFoods: {
type: Array,
default() {
return [
/* {
min_price: 10,
count: 3
},
{
min_price: 7,
count: 1
} */
];
}
}
},
computed: {
// 總個(gè)數(shù) 將所選商品的個(gè)數(shù)累加得到總個(gè)數(shù)。
totalCount() {
let num = 0;
this.selectFoods.forEach(food => {
num += food.count;
});
return num;
},
// 總金額
totalPrice() {
let total = 0;
this.selectFoods.forEach(food => {
total += food.min_price * food.count;
});
return total;
},
// 結(jié)算按鈕顯示
payStr() {
if (this.totalCount > 0) {
return "去結(jié)算";
} else {
return this.min_price_tip;
}
}
},
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;
vertical-align: middle;
}
.shopcart-wrapper .shopcart-list .list-header .empty span {
font-size: 12px;
vertical-align: middle;
}
.shopcart-wrapper .shopcart-list .list-content {
max-height: 360px;
overflow: hidden;
background: white;
}
.shopcart-wrapper .shopcart-list .list-content .food-item {
height: 38px;
padding: 12px 12px 10px 12px;
border-bottom: 1px solid #f4f4f4;
}
.shopcart-wrapper .shopcart-list .list-content .food-item .desc-wrapper {
float: left;
width: 240px;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-left {
float: left;
width: 170px;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-left
.name {
font-size: 16px;
margin-bottom: 8px;
/* 超出部分隱藏*/
-webkit-line-clamp: 1;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
height: 16px;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-left
.unit {
font-size: 12px;
color: #b4b4b4;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-left
.description {
font-size: 12px;
color: #b4b4b4;
/* 超出部分隱藏*/
overflow: hidden;
height: 12px;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-right {
float: right;
width: 70px;
text-align: right;
}
.shopcart-wrapper
.shopcart-list
.list-content
.food-item
.desc-wrapper
.desc-right
.price {
font-size: 12px;
line-height: 38px;
}
.shopcart-wrapper .shopcart-list .list-content .food-item .cartcontrol-wrapper {
float: right;
margin-top: 6px;
}
.shopcart .shopcart-mask {
position: fixed;
top: 0;
right: 0;
width: 100%;
height: 100%;
z-index: 98px;
background: rgba(7, 17, 27, 0.6);
}
</style>
到此購物車與組件聯(lián)動就結(jié)束了。下篇我們講如何進(jìn)行商品分類菜單數(shù)量提示。
總結(jié)
以上所述是小編給大家介紹的Vue商品控件與購物車聯(lián)動效果的實(shí)例代碼,希望對大家有所幫助,如果大家有任何疑問歡迎給我留言,小編會及時(shí)回復(fù)大家的!
- vue實(shí)現(xiàn)購物車功能(商品分類)
- Vue+Node實(shí)現(xiàn)商品列表的分頁、排序、篩選,添加購物車功能詳解
- Vue實(shí)現(xiàn)商品飛入購物車效果(電商項(xiàng)目)
- vue.js購物車添加商品組件的方法
- Vue實(shí)現(xiàn)購物車的全選、單選、顯示商品價(jià)格代碼實(shí)例
- vue+vant實(shí)現(xiàn)購物車全選和反選功能
- vue+vant-UI框架實(shí)現(xiàn)購物車的復(fù)選框全選和反選功能
- 基于Vuejs實(shí)現(xiàn)購物車功能
- vue實(shí)現(xiàn)購物車小案例
- vue實(shí)現(xiàn)商品購物車全選反選
相關(guān)文章
vue使用echarts實(shí)現(xiàn)柱狀圖動態(tài)排序效果
echarts在前端開發(fā)中實(shí)屬必不可缺的大數(shù)據(jù)可視化工具,這篇文章主要為大家詳細(xì)介紹了vue如何使用echarts實(shí)現(xiàn)柱狀圖動態(tài)排序效果,感興趣的可以了解下2023-10-10
vue中el-autocomplete與el-select的異同
本文主要介紹了vue中el-autocomplete與el-select的異同,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-05-05
el-form錯(cuò)誤提示信息手動添加和取消的示例代碼
這篇文章主要介紹了el-form錯(cuò)誤提示信息手動添加和取消,本文通過示例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2022-08-08
vue2從數(shù)據(jù)變化到視圖變化發(fā)布訂閱模式詳解
這篇文章主要為大家介紹了vue2從數(shù)據(jù)變化到視圖變化發(fā)布訂閱模式詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-09-09
vue實(shí)現(xiàn)點(diǎn)擊按鈕切換背景顏色的示例代碼
這篇文章主要介紹了用vue簡單的實(shí)現(xiàn)點(diǎn)擊按鈕切換背景顏色,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-06-06
Vue中使用 setTimeout() setInterval()函數(shù)的問題
這篇文章主要介紹了Vue中使用 setTimeout() setInterval()函數(shù)的問題 ,需要的朋友可以參考下2018-09-09

