亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

vue2.0中vue-cli如何實現全選、單選計算總價格

發布時間:2021-07-20 14:59:23 來源:億速云 閱讀:201 作者:小新 欄目:web開發

這篇文章給大家分享的是有關vue2.0中vue-cli如何實現全選、單選計算總價格的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

由于工作的需要并鑒于網上的vue2.0中vue-cli實現全選、單選方案不合適,自己寫了一個簡單實用的。就短短的126行代碼。

<template>

  <div>

    <table>

      <tr>

        <td><input type="checkbox" v-model="checkAll">全選({{checkedCount}})</td>

        <td>產品名稱</td>

        <td>價格</td>

        <td>數量</td>

      </tr>

      <tr v-for="(item,$index) in lists">

        <td><span v-show="checkedCount===lists.length || item.checked===true">我被選中</span><input type="checkbox" :value="item.id" v-model="checked" @click="currClick(item,$index)"></td>

        <td>{{item.productName}}</td>

        <td>{{item.price}}</td>

        <td>{{item.count}}</td>

      </tr>

      <tr>

        總價:{{totalMoney}}

      </tr>

    </table>

  </div>

</template>

<script>

  export default{

    data() {

      return {

        checked:[],

        totalPrice:[],

        lists : [

          {

            productName:'產品1',

            price:'24',

            count:'3',

            id:1

          },

          {

            productName:'產品2',

            price:'25',

            count:'6',

            id:2

          },

          {

            productName:'產品3',

            price:'54',

            count:'7',

            id:3

          }

        ]

      }

    },

    computed:{

      totalMoney:function(item,index){

        let sum = 0;

        for(let i=0;i<this.totalPrice.length;i++){

          sum += this.totalPrice[i];

        };

        return sum;

      },

      checkAll: {

        get: function() {

          return this.checkedCount == this.lists.length;

        },

        set: function(value){

          var _this = this;

          if (value) {  

            this.totalPrice = [];

            this.checked = this.lists.map(function(item) {

              item.checked = true;

              let total = item.price*item.count;

              _this.totalPrice.push(total);

              return item.id

            })

          }else{

            this.checked = [];

            this.totalPrice=[];

            this.lists.forEach(function(item,index){

              item.checked = false;

            });

          }

        }

      },

      checkedCount: {

        get: function() {

          return this.checked.length;

        }

      }

    },

    methods:{

      currClick:function(item,index){

        var _this = this;

        if(typeof item.checked == 'undefined'){

          this.$set(item,'checked',true);

            let total = item.price*item.count;

            this.totalPrice.push(total);

            console.log(this.totalPrice);

        }else{

          item.checked = !item.checked;

          if(item.checked){

            this.totalPrice = [];

            this.lists.forEach(function(item,index){

              if(item.checked){

                let total = item.price*item.count;

                _this.totalPrice.push(total);

              }

            });

          }else{

            this.totalPrice = [];

            this.lists.forEach(function(item,index){

              if(item.checked){

                let total = item.price*item.count;

                _this.totalPrice.push(total);

              }

            });

          }

        }

      }

    }

  }

</script>

<style>

  tr td{

    width:200px;

    background: #eee;

    padding:10px 0;

  }

 

</style>

效果:

vue2.0中vue-cli如何實現全選、單選計算總價格

vue2.0中vue-cli如何實現全選、單選計算總價格

vue2.0中vue-cli如何實現全選、單選計算總價格

感謝各位的閱讀!關于“vue2.0中vue-cli如何實現全選、單選計算總價格”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

vue
AI

桐庐县| 北辰区| 竹溪县| 姜堰市| 内乡县| 翁牛特旗| 华池县| 惠来县| 浦东新区| 庄浪县| 衡水市| 南川市| 梅河口市| 武冈市| 花莲市| 通榆县| 建昌县| 吴川市| 曲松县| 和田市| 曲阜市| 巴南区| 八宿县| 汉中市| 犍为县| 五指山市| 舟曲县| 大理市| 凤翔县| 自贡市| 丰城市| 巢湖市| 三河市| 巫溪县| 林西县| 波密县| 营口市| 临洮县| 宁波市| 台江县| 石柱|