zoukankan      html  css  js  c++  java
  • 072——VUE中vuex之使用mutations修改购物车仓库数据

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>vuex之使用mutations修改购物车仓库数据</title>
        <script src="vue.js"></script>
        <script src="vuex.js"></script>
    </head>
    <body>
    <div id="demo">
        <footer-cart></footer-cart>
        <Lists></Lists>
    
    </div>
    <script type="text/x-template" id="Lists">
        <div>
            <h1 v-if="goods.length==0">
                购物车中没有商品
                <a href="">去购物吧</a>
            </h1>
            <div v-if="goods.length>0">
                <table border="1">
                    <tr>
                        <th>编号</th>
                        <th>名称</th>
                        <th>价格</th>
                        <th>数量</th>
                        <th>总计</th>
                        <th>操作</th>
                    </tr>
                    <tr v-for="v in goods">
                        <td>{{v.id}}</td>
                        <td>{{v.title}}</td>
                        <td>{{v.price}}</td>
                        <td>
                            <input type="text" v-model="v.num">
                        </td>
                        <td>{{v.totalPrice}}</td>
                        <td>
                            <button @click="del(v.id)">删除</button>
                        </td>
                    </tr>
                </table>
            </div>
        </div>
    </script>
    <script type="text/x-template" id="footerCart">
        <div v-if="totalPrice>0">
            <div>
                总计:{{totalPrice}}
            </div>
        </div>
    </script>
    <script>
        let Lists = {
            template: "#Lists",
            computed: {
                goods() {
                    return this.$store.getters.goods;
                }
            },
            methods: {
                del(id) {
                    this.$store.commit('del', {id})
                }
            }
        }
        let footerCart = {
            template: "#footerCart",
            computed: {
                totalPrice() {
                    return this.$store.getters.totalPrice;
                }
            }
        }
        let store = new Vuex.Store({
            state: {
                goods: [
                    {id: 1, title: 'ihpone7', price: 100, num: 3},
                    {id: 2, title: 'vivo20', price: 100, num: 2}
                ]
            },
            getters: {
                //获取商品总价:
                totalPrice: state => {
                    let totalPrice = 0;
                    state.goods.forEach((v) => {
                        totalPrice += v.num * v.price;
                    });
                    return totalPrice;
                },
                goods(state) {
                    let goods = state.goods;
                    goods.forEach((v) => {
                        v.totalPrice = v.num * v.price;
                    })
                    return goods;
                }
            },
            mutations: {
                //删除购物车中的商品
                del(state, param) {
                    let k;
                    for (let i = 0; i < state.goods.length; i++) {
                        if (state.goods[i].id == param.id) {
                            k = i;
                            break;
                        }
                    }
                    state.goods.splice(k, 1);
                }
            }
        });
        var app = new Vue({
            el: "#demo",
            store,
            components: {
                Lists, footerCart
            }
        });
    </script>
    </body>
    </html>
    

      

  • 相关阅读:
    深入理解memcached
    如何查看你的 memcached 的状态
    转: Linux 技巧:让进程在后台可靠运行的几种方法
    centos 如何用 rsyslog 搭建本地日志服务(续1: omprog模块与php deamon的配合使用)
    转: 解决MSYS2下的中文乱码问题
    解决windows下vim方向键变成 ABCD 的问题
    centos 如何用 rsyslog 搭建本地日志服务
    转:理解 Linux 的硬链接与软链接
    php include include_once require require_once 的区别与联系
    让块级元素水平垂直居中
  • 原文地址:https://www.cnblogs.com/yiweiyihang/p/8379557.html
Copyright © 2011-2022 走看看