vue小案例 商品价格数量总价同步变化案例

该示例展示了如何在 Vue.js 中实现商品价格、数量和总价的实时同步更新。通过点击复选框选择商品,商品的价格会根据数量自动计算总价,并在表格中显示。同时,提供了加减按钮来改变商品数量,总价也会随之更新。最后,总件数和总价会在表格底部汇总展示。
摘要由CSDN通过智能技术生成

vue商品价格数量总价同步变化案例

效果动图

在这里插入图片描述

代码展示

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>

<body>
  <div id="app">
    <table>
      <tbody>
        <tr>
          <td>
            <input type="checkbox" :checked="aa.checked" @click="acb">
          </td>
          <td>{{aa.name}}</td>
          <td>
            <span></span>
            <span>{{aa.price}}</span>
          </td>
          <td>
            <button @click="ajian">-</button>
            <span>{{aa.num}}</span>
            <button @click="ajia">+</button>
          </td>
          <td>
            <span></span>
            <span>{{aa.aprice}}</span>
          </td>
        </tr>
        <tr>
          <td>
            <input type="checkbox" :checked="bb.checked" @click="bcb">
          </td>
          <td>{{bb.name}}</td>
          <td>
            <span></span>
            <span>{{bb.price}}</span>
          </td>
          <td>
            <button @click="bjian">-</button>
            <span>{{bb.num}}</span>
            <button @click="bjia">+</button>
          </td>
          <td>
            <span></span>
            <span>{{bb.bprice}}</span>
          </td>
        </tr>
        <tr>
          <td>共{{znum}}件</td>
          <td>总价:¥{{zprice}}</td>
        </tr>
      </tbody>
    </table>
  </div>
  <script src="https://cdn.staticfile.org/vue/2.6.9/vue.js"></script>
  <script>
    var app = new Vue({
      el: '#app',
      data: {
        aa: {
          name: 'iphone6',
          price: 600,
          num: 1,
          aprice: 0,
          checked: false
        },
        bb: {
          name: 'iphone7',
          price: 800,
          num: 1,
          bprice: 0,
          checked: false
        },
        zprice: 0,
        znum: 0
      },
      created() {
        this.aa.aprice = this.aa.price * this.aa.num
        this.bb.bprice = this.bb.price * this.bb.num
        this.znp()
      },
      methods: {
        acb() {
          if (this.aa.checked == true) {
            this.aa.checked = false
          } else if (this.aa.checked == false) {
            this.aa.checked = true
          }
          this.znp()
        },
        bcb() {
          if (this.bb.checked == true) {
            this.bb.checked = false
          } else if (this.bb.checked == false) {
            this.bb.checked = true
          }
          this.znp()
        },
        ajian() {
          if (this.aa.num > 0) {
            this.aa.num--
          }
          this.aa.aprice = this.aa.price * this.aa.num
          this.znp()
        },
        ajia() {
          this.aa.num++
          this.aa.aprice = this.aa.price * this.aa.num
          this.znp()
        },
        bjian() {
          if (this.bb.num > 0) {
            this.bb.num--
          }
          this.bb.bprice = this.bb.price * this.bb.num
          this.znp()
        },
        bjia() {
          this.bb.num++
          this.bb.bprice = this.bb.price * this.bb.num
          this.znp()
        },
        znp() {
          if (this.aa.checked != false && this.bb.checked != false) {
            this.znum = this.aa.num + this.bb.num
            this.zprice = this.aa.aprice + this.bb.bprice
          } else if (this.aa.checked != false && this.bb.checked == false) {
            this.znum = this.aa.num
            this.zprice = this.aa.aprice
          } else if (this.aa.checked == false && this.bb.checked != false) {
            this.znum = this.bb.num
            this.zprice = this.bb.bprice
          } else {
            this.znum = 0
            this.zprice = 0
          }
        }
      }
    });
  </script>
</body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

初辰ge

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

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

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

打赏作者

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

抵扣说明:

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

余额充值