Vue.js實(shí)現(xiàn)的購(gòu)物車功能詳解
本文實(shí)例講述了Vue.js實(shí)現(xiàn)的購(gòu)物車功能。分享給大家供大家參考,具體如下:
使用計(jì)算屬性,內(nèi)置指令,方法等基礎(chǔ)知識(shí)開發(fā)購(gòu)物車。
需求分析:展示一個(gè)已經(jīng)加入購(gòu)物車的商品列表,包含商品名稱、商品單價(jià)、購(gòu)買數(shù)量和操作,以及最后確定是否選中商品的功能,總價(jià)格為選中商品的價(jià)格,夠買數(shù)量可以增加減少,商品可以從購(gòu)物車中移除。效果如圖所示:

——實(shí)例來自《Vue.js實(shí)戰(zhàn)》第五章
邏輯整理:vue實(shí)例定義一個(gè)數(shù)組list存放商品信息,定義方法與減少按鈕,增加按鈕等聯(lián)系,動(dòng)態(tài)改變商品數(shù)量,通過handleRemove()移除list中的值;利用each()遍歷所有type='checkbox'的input,修改它們的狀態(tài),最后用totalPrices()計(jì)算商品總價(jià)格。
index.html
<div id="app">
<template v-if="list.length">
<table>
<thead>
<tr>
<th></th>
<th>商品名稱</th>
<th>商品單價(jià)</th>
<th>購(gòu)買數(shù)量</th>
<th>操作</th>
<th><input type="checkbox" name="list" @click="checkBox()" id="checkBox"></th>
</tr>
</thead>
<tbody>
<tr v-for="(item, index) in list">
<td>{{ index + 1 }}</td>
<td>{{ item.name }}</td>
<td>{{ item.price }}</td>
<td>
<button
@click="handleReduce(index)"
:disabled="item.count === 1" class="btn"> - </button>
{{ item.count }}
<button @click="handleAdd(index)" class="btn"> + </button>
</td>
<td>
<button @click="handleRemove(index)" class="btns">移除</button>
</td>
<td style="text-align: center;">
<input type="checkbox" name="list" @click="totalPrices()">
</td>
</tr>
</tbody>
</table>
<div id="price">總價(jià):¥{{totalPrice}}</div>
</template>
<div v-else>購(gòu)物車為空</div>
</div>
style.css
*{
margin: 0px;
padding: 0px;
}
[v-cloak] {
display: none;
}
#app{
width: 200px;
height: 200px;
margin: 10px auto;
text-align: center;
}
#price{
width: 457px;
height: 40px;
border: 1px solid #e9e9e9;
border-top: 0;
line-height: 40px;
}
table{
border: 1px solid #e9e9e9;
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
}
th,td{
padding: 8px 16px;
border:1px solid #e9e9e9e9;
text-align: left;
}
th{
background: #f7f7f7;
color: #5c6c77;
font-weight: 600;
white-space: nowrap;
}
.btn{
width: 20px;
height: 20px;
border-radius: 50%;
border:1px solid #cccccc;
background: #ffffff;
color: #778899;
}
.btns{
width: 40px;
height: 20px;
border-radius: 5px;
border:1px solid #cccccc;
background: #ffffff;
color: #778899;
line-height: 20px;
}
app.js
var app=new Vue({
el:'#app',
data:{
list: [
{
id:1,
name:'iPhone 7',
price:6188,
count:1
},
{
id:2,
name:'iPad Pro',
price:5888,
count:1
},
{
id:3,
name:'MaxBook Pro',
price:21488,
count:1
}
],
totalPrice: 0
},
methods:{
handleReduce: function (index) {//減少按鈕
if(this.list[index].count === 1){
return;
}
this.list[index].count--;
this.$options.methods.totalPrices();
},
handleAdd: function (index) {//增加按鈕
this.list[index].count++;
this.$options.methods.totalPrices();
},
handleRemove: function (index) {//移除按鈕
this.list.splice(index, 1);
$("tr").eq(index+1).remove("input[type='checkbox']");
this.$options.methods.totalPrices();
},
checkBox: function (){//選中狀態(tài)
if($("#checkBox").is(':checked')==true){
$("input[type='checkbox']").each(function(){
$("input[type='checkbox']").attr("checked",true);
});
}else{
$("input[type='checkbox']").each(function(){
$("input[type='checkbox']").attr("checked",false);
});
}
this.$options.methods.totalPrices();
},
totalPrices: function (){//計(jì)算總價(jià)格
var total = 0;
for(var i = 0;i < app.list.length;i++){
var item = app.list[i];
if($("input[type='checkbox']").eq(i+1).is(':checked')){
total += item.price * item.count;
}
}
app.totalPrice = total.toString().replace(/\B(?=(\d{3})+$)/g,',');
}
}
});
GitHub地址:https://github.com/GitHubVikas/Yao/tree/master/DemoOne
希望本文所述對(duì)大家vue.js程序設(shè)計(jì)有所幫助。
- vuejs手把手教你寫一個(gè)完整的購(gòu)物車實(shí)例代碼
- 基于Vuejs實(shí)現(xiàn)購(gòu)物車功能
- Vue實(shí)現(xiàn)購(gòu)物車功能
- vue實(shí)現(xiàn)購(gòu)物車小案例
- vue實(shí)現(xiàn)商城購(gòu)物車功能
- vue 實(shí)現(xiàn)購(gòu)物車總價(jià)計(jì)算
- vuex實(shí)現(xiàn)的簡(jiǎn)單購(gòu)物車功能示例
- vue+vant-UI框架實(shí)現(xiàn)購(gòu)物車的復(fù)選框全選和反選功能
- vue實(shí)現(xiàn)購(gòu)物車拋物線小球動(dòng)畫效果的方法詳解
- Vue實(shí)現(xiàn)簡(jiǎn)單的購(gòu)物車案例
相關(guān)文章
Vue?FileManagerPlugin?報(bào)錯(cuò)問題及解決
這篇文章主要介紹了Vue?FileManagerPlugin?報(bào)錯(cuò)問題及解決,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-10-10
解決VUE-Router 同一頁面第二次進(jìn)入不刷新的問題
這篇文章主要介紹了解決VUE-Router 同一頁面第二次進(jìn)入不刷新的問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2020-07-07
vue實(shí)現(xiàn)echart餅圖legend顯示百分比的方法
本文主要介紹了vue實(shí)現(xiàn)echart餅圖legend顯示百分比的方法,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-09-09
默認(rèn)瀏覽器設(shè)置及vue自動(dòng)打開頁面的方法
今天小編就為大家分享一篇默認(rèn)瀏覽器設(shè)置及vue自動(dòng)打開頁面的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-09-09
解析vue?3.0?使用axios庫(kù)發(fā)起?post?get?的配置過程
get post 請(qǐng)求開發(fā)中最普通最常見的請(qǐng)求方式但是在vue中如何實(shí)現(xiàn)呢 這里記錄一下配置過程,對(duì)vue?使用axios發(fā)起?post?get配置過程感興趣的朋友一起看看吧2022-05-05
uniapp使用條件編譯#ifdef(跨平臺(tái)設(shè)備兼容)
這篇文章主要介紹了uniapp使用條件編譯#ifdef(跨平臺(tái)設(shè)備兼容),需要的朋友可以參考下2022-12-12
動(dòng)態(tài)加載權(quán)限管理模塊中的Vue組件
本篇文章給大家詳細(xì)講解了如何在權(quán)限管理模塊中動(dòng)態(tài)的加載VUE組件的過程,有這方面需求的朋友跟著學(xué)習(xí)下吧。2018-01-01

