Vue学习笔记之图书采购界面小案例

一、案例要求:

功能:点击购买数量的加号、减号进行数量的增减;移除数据;合计总价格等,具体功能界面如下:

Vue学习笔记之图书采购界面小案例_第1张图片

二、案例结构

Index.html 界面

main.js    功能处理代码

style.css   样式

Vue学习笔记之图书采购界面小案例_第2张图片

三、代码实现(功能比较简单,就直接上代码了)

Index.html 界面:




  
  Title
  



书籍名称 出版日期 价格 购买数量 操作
{{item.id}} {{item.name}} {{item.date}} {{item.price | showPrice}} {{item.count}}

总价格:{{totalPrice | showPrice}}

购物车为空

 

main.js    功能处理代码

const app = new Vue({
  el: '#app',
  data: {
    books: [
      {
        id: 1,
        name: '《算法大师》',
        date: '2020-09',
        price: 89.9,
        count: 1
      },{
        id: 2,
        name: '《思维简史》',
        date: '2010-09',
        price: 100.00,
        count: 1
      },{
        id: 3,
        name: '《汇编语言》',
        date: '2030-10',
        price: 69.9,
        count: 1
      },{
        id: 4,
        name: '《计算机等级考试》',
        date: '2020-01',
        price: 56.88,
        count: 1
      },{
        id: 5,
        name: '《营养师》',
        date: '2015-08',
        price: 34,
        count: 1
      },
    ],
    btnEnable: true
  },
  methods: {
    getFinalPrice(price) {
      return '¥' + price.toFixed(2)
    },
    increment(index) {
      console.log('increment',index);
      this.books[index].count += 1

    },
    decrement(index) {
      console.log('decrement',index);
      this.books[index].count -= 1
    },
    removeClick(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

      //  高阶函数 reduce()
      return this.books.reduce((function (prevValue, book) {
        return prevValue + book.price * book.count
      } ),0)
    }
  },
  filters: {
    showPrice(price) {
      return '¥' + price.toFixed(2)
    }
  },

})

 

style.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-color: #f7f7f7;
  color: #5c6b77;
  font-weight: 600;
}

小技巧:

1、reduce函数,可以理解为“合计”的一个动作

Vue学习笔记之图书采购界面小案例_第3张图片

2、filters,过滤器:进一步对数据进行处理

Vue学习笔记之图书采购界面小案例_第4张图片

 

你可能感兴趣的:(Vue)