91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Vue怎么實現一個購物車功能

發布時間:2020-12-21 15:19:45 來源:億速云 閱讀:200 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關使用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="(itme,index) in books">
   <td>{{itme.id}}</td>
   <td>{{itme.name}}</td>
   <td>{{itme.date}}</td>
   <!-- showPrice過濾器 -->
   <td>{{itme.price | showPrice}}</td>
   <td>
   <!-- 動態綁定disabled,當數量小于1時 禁止點擊按鈕-->
   <button @click="decrement(index)" :disabled="itme.count <= 1">-</button>
   {{itme.count}}
   <button @click="increment(index)">+</button>
   </td>
   <td><button @click="Handle(index)">移除</button></td>
  </tr>
  </tbody>
 </table>
 <h3>總價格:{{totalPrice | showPrice}}</h3>
 </div>
 <h3 v-else>購物車為空</h3>
 </div>
</body>

css代碼塊

table{
 border: 1px solid #e9e9e9;
 border-collapse: collapse;
 border-spacing: 0;
}
th,td{
 padding: 8px 16px;
 border: 1px solid #e9e9e9;
 text-align: left;
}
th{
 background: #f7f7f7;
 color: #5c6b77;
 font-weight: 600;
}

Vue.js代碼塊

const app = new Vue({
 el:'#app',
 data:{
 books:[
  { 
  
  id:1,
  name:'《算法議論》',
  date:'2001-1',
  price:85.00,
  count:1
 },
 { 
  id:2,
  name:'《編程珠璣》',
  date:'2002-1',
  price:65.00,
  count:1
 },
 { 
  id:3,
  name:'《Unix編程藝術》',
  date:'2000-1',
  price:59.00,
  count:1
 },
 { 
  id:4,
  name:'《代碼大全》',
  date:'2005-1',
  price:135.00,
  count:1
 },
 ]
 },

 /**
 * 使用普通方法
 */
 methods:{
 //獲取小數點的方法
 // getFinalPrice(price){
 // return '¥' + price.toFixed(2);
 // }

 //點擊事件
 increment(index){
  this.books[index].count++;
 },
 decrement(index){
  this.books[index].count--;
 },
 Handle(index){
  this.books.splice(index,1);
 }
 },
 computed:{
 totalPrice(){
  let totalPrice = 0;
  for(let i = 0; i < this.books.length; i++){
  totalPrice += this.books[i].price * this.books[i].count;
  }
  return totalPrice;
 }
 },
 /**
 * 使用過濾器獲取小數點
 */
 filters:{
 showPrice(price){
  return '¥' + price.toFixed(2);
 }
 }
})

上述就是小編為大家分享的使用Vue怎么實現一個購物車功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

徐水县| 黑水县| 大丰市| 屏南县| 北票市| 湘西| 府谷县| 龙岩市| 阿拉善左旗| 汾西县| 改则县| 德清县| 息烽县| 乌鲁木齐市| 嘉鱼县| 梁平县| 晋宁县| 蓝田县| 山丹县| 华坪县| 凤凰县| 泌阳县| 信丰县| 繁昌县| 隆尧县| 晋州市| 黔西县| 东方市| 荆州市| 新昌县| 乡城县| 蒙阴县| 车险| 荥经县| 溧水县| 康平县| 泾川县| 泰安市| 阿合奇县| 宁国市| 思南县|