购物车-v-model

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>购物车-v-model</title>

    <style>

        table {

            border-collapse: collapse;

        }

        thead {

            background-color: aliceblue;

        }

        th,

        td {

            border: 1px solid #aaa;

            padding: 8px 16px;

        }

    </style>

</head>

<body>

    <div id="app">

        <template v-if="books.length">

        <table>

            <thead>

                <tr>

                    <th>序号</th>

                    <th>书籍名称</th>

                    <th>出版日期</th>

                    <th>价格</th>

                    <th>购买数量</th>

                    <th>操作</th>

                </tr>

            </thead>

            <tbody>

                <tr v-for="(item, index) in books" :key="item.id">

                    <td>{{index + 1}}</td>

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

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

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

                    <td>

                        <button @click="decrement(index,item)">-</button>

                        {{item.count}}

                        <button @click="increment(index,item)">+</button>

                    </td>

                    <td>

                        <button @click="removeBook(index)">移除</button>

                    </td>

                </tr>

            </tbody>

        </table>

        <h2>¥{{totalPrice}}</h2>

    </template>

        <h1 v-else>购物车为空,请添加买的书籍~</h1>

    </div>

    <script src="vue.js"></script>

    <script src="./data/data.js"></script>

    <script>

        console.log(books)

        const app = Vue.createApp({

            data: function () {

                return {

                    books: books

                }

            },

            computed: {

                totalPrice() {

                    let price = 0

                    for (const item of this.books) {

                        price += item.price * item.count

                    }

                    return price

                }

            },

            methods: {

                decrement(index, item) {

                    console.log("点击-")

                    this.books[index].count--

                },

                increment(index,item) {

                    console.log(index, item)

                    console.log("点击+:", index)

                    //this.books[index].count++

                    item.count++

                },

                removeBook(index){

                    this.books.splice(index,1)

                }

            }


 

        })

        const vm = app.mount('#app')

    </script>

</body>

</html>

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值