Vue计算属性computed之购物车商品结算案例

一、需求说明:

  • 实现页面基本布局。
  • 单击“+”按钮时,对应商品的数量增加,当单击“-”按钮时,对应商品的数量减少,当数量减少到1时,“-”按钮无法再进行操作。
  • 每个对应商品后面都有一个“移除”按钮,当单击“移除”按钮时,当前商品列表项会删除,页面效果图如下:

二、实现过程: 

HelloWorld.vue代码示例:

<template>
  <div>
    <table id="mytable">
      <thead>
        <tr style="background: Gainsboro;">
          <th></th>
          <th>商品名称</th>
          <th>商品单价</th>
          <th>商品数量</th>
          <th>操作</th>
        </tr>
      </thead>
      <tbody>
        <tr v-for="(item,index) in goods" :key="index" :class="{on:index%2!==0,off:index%2==0}">
          <td>{{item.id}}</td>
          <td>{{item.name}}</td>
          <td>{{item.price}}</td>
          <td>
            <button @click="reduce(index)">-</button>&nbsp;{{item.count}}&nbsp;<button @click="add(index)">+</button>
          </td>
          <td>
            <button @click="del(index)">移除</button>
          </td>
        </tr>
      </tbody>
    </table>
	<p>总价:¥ {{sum}}</p>
  </div>
</template>

<script>
export default {
  name:'HelloWorld',
  data(){
    return{
      goods:[
        {
          id:1,
          name:"IPhone X",
          price:7999,
          count:1
        },
        { id:2,
          name:"荣耀16",
          price:2399,
          count:1
          },
          { id:3,
          name:"华为P22",
          price:3399,
          count:1},
          { id:4,
          name:"小米9",
          price:3999,
          count:1},
      ]
    }
  },
  methods:{
    reduce(index){
      if(this.goods[index].count==1){
        this.goods[index].count=1
      }else{
        this.goods[index].count--;
      }
    },
    add(index){
      this.goods[index].count++;
    },
    del(index){
      this.goods.splice(index,1)
    }
  },
  computed:{
    sum:function(){
      var sum=0;
      for(var i=0;i<this.goods.length;i++){
        sum+=this.goods[i].price*this.goods[i].count;
      }
      return sum;
    }
  }

}
</script>

<style>
table{
	  	border: 1px solid gray;
	  	width:600px;
	  	border-collapse:collapse;
	  }
	  tr{
	  	height: 35px;
	  	text-align: center;
	  }
    .on{
      background: #F5F5F5;
    }
    .off{
      background:white;
    }
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wanglingli95

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值