【Vue项目复习笔记】汇总工具栏的封装

新建CartBottomBar,将其导入到cart,注册使用。
其中CartBottomBar如下:

<template>
<div class="bottom-bar">
  <div class="check-content">
    <check-button class="checked-all"
    ></check-button>
    <span>全选</span>
  </div>
  <div class="totalPrice">
    合计:{{totalPrice}}
  </div>
  <div class="calculate">
    去计算:{{checkLength}}
  </div>
</div>
</template>

<script>
import CheckButton from '@/components/content/checkButton/CheckButton';
export default {
  name: 'CartBottomBar',
  components:{
    CheckButton
  },
  computed:{
    totalPrice(){
   return this.$store.state.cartList.filter((item) => {
            return item.checked;
          }).reduce((preValue, item) => {
            return preValue + item.price * item.count;
            // preValue 上一次的值
          }, 0).toFixed(2)
       //toFixed(2)保留两位小数
    },
    checkLength() {
      return this.$store.state.cartList.filter((item) => item.checked).length;
    },
};
</script>

<style scoped>
.bottom-bar {
  position: relative;
  display: flex;
  height: 60px;
  line-height: 60px;
  bottom: 20px;
  background-color: #eeeeee;
}
.check-content {
  display: flex;
  align-items: center;
  margin-left: 10px;
  width: 60px;
}
.checked-all {
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-right: 5px;
}
.totalPrice {
  margin-left: 20px;
  flex: 1;
}
.calculate {
  width: 90px;
  background-color: #fb7299;
  text-align: center;
  color: #ffffff;
}
</style>

全选按钮状态显示

所有商品都被选中的时候,全选才会被选中。判断有一个不选中,全选就不选中。

  <check-button class="checked-all"
                  :is-checked="isSelectAll"
    ></check-button>
   isSelectAll(){
      if(this.$store.state.cartList.length===0) return false;
      //因为如果购物车里面没有内容this.$store.state.cartList.find(item=>!item.checked)这个返回的就是undefined,取反就是true
      return  !this.$store.state.cartList.find(item=>!item.checked)
      //this.$store.state.cartList.find(item=>!item.checked)找到一个不选中的这个就是true
      //取反就是false,此时全选是false
    }
  },
全选按钮的点击效果

先要监听点击

 <check-button class="checked-all"
                  :is-checked="isSelectAll"
    @click.native="checkClick"
    ></check-button>

点击全选,如果原来都是选中,点击一次,全部不选中;如果原来都是不选中(某些不选中),全部选中。

 methods:{
     checkClick(){
      if (this.isSelectAll){
        //全部选中
        this.$store.state.cartList.forEach(item=>item.checked=false)
      }else { //部分或者全部不选中
        this.$store.state.cartList.forEach(item=>item.checked=true)
      }
    },
  }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

纵有千堆雪与长街

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

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

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

打赏作者

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

抵扣说明:

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

余额充值