VUE-書籍購物車案例
要求:可以實現購買數量增加和減少的操作,還有移除,以及在增加和刪除的時候顯示價格,如果當全部移除時,把購物車為空顯示出來
話不多說,上程式碼
這是html的
<body>
<div id="app">
<div v-if="books.length">
<table>
<thead>
<tr>
<!-- 這裡的東西是寫死的 -->
<th></th>
<th>書籍名稱</th>
<th>出版日期</th>
<th>價格</th>
<th>購買數量</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<!-- 下面的是變數 -->
<!-- 物件是可以遍歷的 -->
<!-- 我們要寫上一些按鈕啥的 不推薦使用這種 -->
<tr v-for="(item,index) in books">
<!-- <td v-for="value in item">{{value}}</td> -->
<td>{{item.id}}</td>
<td>{{item.name}}</td>
<td>{{item.data}}</td>
<!-- <td>{{getFinalPrice(item.price)}}</td> -->
<!-- 過濾器 -->
<td>{{item.price | showPrice}}</td>
<td>
<!-- :disabled="true"布林值 -->
<!-- 當按鈕到1時,就不能再減了 -->
<button @click="decrement(index)" v-bind:disabled="item.count <= 1">-</button>
{{item.count}}
<button @click="increment(index)">+</button>
</td>
<td><button @click="removeLandle(index)">移除</button></td>
</tr>
</tbody>
</table>
<!--以錢的方法顯示出來 -->
<!-- 錢的話最好使用計算屬性computed -->
<h2>總價格:{{totalPrice | showPrice }}</h2>
</div>
<h2 v-else>購物車為空</h2>
</div>
<script src="../vue.js"></script>
<script src="./main.js"></script>
<script></script>
</body>
這是css的
table{
border: 1px solid #e9e9e9;
border-collapse: collapse;
border-spacing: 0;
}
th,td{
padding:8px 16px ;
border: 1px solid #e9e9e9;
text-align: center;
}
th{
background-color: #f7f7f7;
color: #5c6b77;
font-weight: 600;
}
這是js的
const app = new Vue({
el: '#app',
data: {
books: [
{
id: 1,
name: '《演算法導論》',
data: '2006-9',
price: 85.0,
count: 1
},
{
id: 2,
name: '《UNIX程式設計藝術》',
data: '2006-2',
price: 59.0,
count: 1
},
{
id: 3,
name: '《程式設計珠璣》',
data: '2008-10',
price: 39.0,
count: 1
},
{
id: 4,
name: '《程式碼大全》',
data: '2006-3',
price: 128.0,
count: 1
}
]
},
methods: {
// getFinalPrice(price){
// return '¥'+price.toFixed(2);
// },
increment(index) {
// console.log('increment', index);
this.books[index].count++;
},
decrement(index) {
// console.log('decrement', index);
this.books[index].count--;
// 減到一時,就不能減了
},
removeLandle(index){
this.books.splice(index,1);//這裡等於1的話相當於把自己刪掉
}
},
computed:{
totalPrice(){
// console.log(1);
let totalPrice=0;
for(let i=0;i<this.books.length;i++){
totalPrice=totalPrice+this.books[i].price*this.books[i].count;
}
return totalPrice;
}
},
// 過濾器
filters: {
showPrice(price) {
return '¥' + price.toFixed(2);
}
}
})
來看看瀏覽器中的效果
點選增加或者減少的按鈕會有不同的效果
當移除清空時
相關文章
- 活動| 白帽子雙十一清空購物車的祕籍...
- day83:luffy:新增購物車&導航欄購物車數字顯示&購物車頁面展示
- flutter 購物車功能Flutter
- 購物車模組
- ATM+購物車
- 淘寶買家授權API系列:新增購物車商品、刪除購物車商品、獲取購物車商品列表API
- python之購物車程式Python
- jQuery 加入購物車 彈窗jQuery
- 購物車的實現原理
- vue例項-購物車功能Vue
- 購物車原理以及實現
- Vue實現購物車效果Vue
- 使用Vue做一個購物車Vue
- python-購物車程式練習Python
- 購物車(OK HTTP方法請求)HTTP
- Android實現商城購物車功能Android
- 改版後前端購物車系統前端
- 【jquery】實現購物車加減jQuery
- 【UML】案例分析:新型超市購物自助系統
- 加入購物車動畫效果實現動畫
- vue2.0實現購物車功能Vue
- 原生js實現購物車結算JS
- 微信小程式的購物車功能微信小程式
- Redis 購物車 - 刪除商品與更新購買數量Redis
- Python書籍|分享一本Python的書籍Python
- 【書籍】Django專案例項精解(第2版) pdf 下載Django
- 購物車【JavaWeb小專案簡單版】JavaWeb
- JavaScript 購物車自動計算價格JavaScript
- Python入門基礎—購物車小程式Python
- Vue實現簡單的購物車功能Vue
- 書籍目錄
- Java全集書籍Java
- 護膚書籍
- 程式語言類“購物車”清單請查收!
- 購物車自動計算商品總價格
- jQuery實現購物車的增刪改查jQuery
- [Skr-Shop]購物車之架構設計架構
- jQuery新增到購物車動畫特效外掛jQuery動畫特效