vue.基础购物车功能详细制作

简介: vue.基础购物车功能详细制作

vue实现购物车功能.可以对购物车进行编辑、添加、删除等功能。

根据增加商品数量、减少商品数量、移除商品动态更新 总价格。

HTML部分

<code class="language-plaintext hljs"><div id="app" v-cloak>
        <table width="500" border="2">
            <tr id="head" align="center">
                <th>{<!-- -->{name}}</th>
                <th>{<!-- -->{price}}</th>
                <th>{<!-- -->{number}}</th>
                <th>{<!-- -->{Operation}}</th>
            </tr>
            <tr align="center" v-for="(item,index) in list" :style="item.number>0?'background-color:red':''">
                <td>{<!-- -->{item.name}}</td>
                <td>¥:{<!-- -->{item.price}}</td>
                <td>
                    <button @click="decrease(index)" style="display:none;" v-show="item.number >= 1">-</button>
                    <span>{<!-- -->{item.number}}</span>
                    <button @click="increase(index)">+</button>
                </td>
                <td>
                    <button @click="editor(index)">编辑</button>
                    <button @click="deletes(index)">删除</button>
                </td>
            </tr>
            <tr align="center">
                <td></td>
                <td>总价格:{<!-- -->{totalPrice}}¥</td>
                <td>总数量:{<!-- -->{totalNum}}</td>
                <td></td>
            </tr>
        </table>
        <div id="addBox">
            <button @click="add">{<!-- -->{message}}</button>
            <form v-show="isShow" @submit.prevent="insert">
                商品名称:<input v-bind:type="type" v-model.name="names" placeholder="商品名称">
                价格 : <input v-bind:type="typeNumber" v-model.number="num">
                <button>添加</button>
            </form>
            <form v-show="inShow" @submit.prevent="editors(index)">
                商品名称:<input v-bind:type="type" v-model="input_names" placeholder="商品名称">
                价格 : <input v-bind:type="typeNumber" v-model.number="input_num">
                <button>确认编辑</button>
            </form>
        </div>
    </div></code>

script部分(Vue写法)

<code class="language-plaintext hljs"><script src="https://cdn.jsdelivr.net/npm/vue@3.2.31/dist/vue.global.js"></script>
    <script>
        Vue.createApp({
            data() {
                return {
                    name: '名称',
                    names: '',
                    price: '价格',
                    prices: '',
                    number: '数量',
                    Operation: '操作',
                    type: 'text',
                    typeNumber: 'number',
                    isShow: false,
                    inShow: false,
                    message: '添加商品',
                    num: 0,
                    editorname: '编辑',
                    // 基础数据
                    list: [{
                        name: '三相之力',
                        price: 3000,
                        number: 1,
                    },
                    {
                        name: '无尽之刃',
                        price: 3400,
                        number: 1,
                    }],
                    index:null
                }
            },
            computed:{
                // 总价格
                totalPrice() {
                    let num = 0;
                    this.list.forEach(element => {
                        num += (element.price * element.number)
                    });
                    return num
                },
                // 总数量
                totalNum() {
                    let num = 0;
                    this.list.forEach(element => {
                        num += element.number
                    });
                    return num
                },
            },
            methods: {
                // 添加商品
                add() {
                    this.isShow = !this.isShow;//布尔值运算显示隐藏
                    if (this.isShow) {
                        this.message = '关闭添加商品';
                    } else {
                        this.message = '添加商品';
                    };
                },
                insert() {
                    if (this.names == '') {
                        alert('请填写商品')
                    } else {
                        this.list.push({
                            name: this.names,
                            price: this.num,
                            number: 1
                        })
                        this.isShow = !this.isShow;
                        this.names=''
                        this.num=''
                    };
                },
                // 减少数量
                decrease(i) {
                    this.list[i].number--
                    if (this.list[i].number <= 0 && confirm("是否删除")) {
                        this.list.splice(i, 1)
                    };
                },
                // 添加数量
                increase(i) {
                    this.list[i].number++
                },
                // 删除商品
                deletes(i) {
                    this.list.splice(i, 1)
                },
                // 编辑商品
                editor(i) {
                    this.inShow = !this.inShow;
                    if (this.isShow) {
                        this.editorname = '编辑';
                    };
                    this.input_names = this.list[i].name;
                    this.input_num = this.list[i].price;
                    this.index=i;
                },
                editors() {
                    this.list[this.index].name=this.input_names
                    this.list[this.index].price=this.input_num;
                    this.inShow = !this.inShow;
                },
            },
        }).mount('#app')
    </script></code>

整体写发与js差不多,只不过vue他知识改变了数据,所用的也都是Vue的一些基本代码

vue基础学习:

vue模板语法

模板语法

1.使用双花括号( {{}} )对变量输出,内部可以写简单的表达式用于对数据的处理

一个花括号中只能输出一个变量

<b>{{ name }}</b>

2.v-text

相当于js的innerText,

3.v-html

相当于js的innerHTML

4.v-bind

动态绑定属性,简写是冒号( : )

更多使用请看Vue官方

菜鸟教程:Vue.js 安装 | 菜鸟教程

node.js:下载 | Node.js 中文网

框架:Vue.js - 渐进式 JavaScript 框架 | Vue.js

相关文章
|
11天前
|
缓存 JavaScript 前端开发
vue学习第四章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript与Vue的大一学生。本文介绍了Vue中计算属性的基本与复杂使用、setter/getter、与methods的对比及与侦听器的总结。如果你觉得有用,请关注我,将持续更新更多优质内容!🎉🎉🎉
vue学习第四章
|
11天前
|
JavaScript 前端开发
vue学习第九章(v-model)
欢迎来到我的博客,我是瑞雨溪,一名热爱JavaScript与Vue的大一学生,自学前端2年半,正向全栈进发。此篇介绍v-model在不同表单元素中的应用及修饰符的使用,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉
vue学习第九章(v-model)
|
11天前
|
JavaScript 前端开发 开发者
vue学习第十章(组件开发)
欢迎来到瑞雨溪的博客,一名热爱JavaScript与Vue的大一学生。本文深入讲解Vue组件的基本使用、全局与局部组件、父子组件通信及数据传递等内容,适合前端开发者学习参考。持续更新中,期待您的关注!🎉🎉🎉
vue学习第十章(组件开发)
|
16天前
|
JavaScript 前端开发
如何在 Vue 项目中配置 Tree Shaking?
通过以上针对 Webpack 或 Rollup 的配置方法,就可以在 Vue 项目中有效地启用 Tree Shaking,从而优化项目的打包体积,提高项目的性能和加载速度。在实际配置过程中,需要根据项目的具体情况和需求,对配置进行适当的调整和优化。
|
17天前
|
存储 缓存 JavaScript
在 Vue 中使用 computed 和 watch 时,性能问题探讨
本文探讨了在 Vue.js 中使用 computed 计算属性和 watch 监听器时可能遇到的性能问题,并提供了优化建议,帮助开发者提高应用性能。
|
17天前
|
存储 缓存 JavaScript
如何在大型 Vue 应用中有效地管理计算属性和侦听器
在大型 Vue 应用中,合理管理计算属性和侦听器是优化性能和维护性的关键。本文介绍了如何通过模块化、状态管理和避免冗余计算等方法,有效提升应用的响应性和可维护性。
|
17天前
|
存储 缓存 JavaScript
Vue 中 computed 和 watch 的差异
Vue 中的 `computed` 和 `watch` 都用于处理数据变化,但使用场景不同。`computed` 用于计算属性,依赖于其他数据自动更新;`watch` 用于监听数据变化,执行异步或复杂操作。
|
16天前
|
JavaScript 前端开发 UED
vue学习第二章
欢迎来到我的博客!我是一名自学了2年半前端的大一学生,熟悉JavaScript与Vue,目前正在向全栈方向发展。如果你从我的博客中有所收获,欢迎关注我,我将持续更新更多优质文章。你的支持是我最大的动力!🎉🎉🎉
|
18天前
|
存储 JavaScript 开发者
Vue 组件间通信的最佳实践
本文总结了 Vue.js 中组件间通信的多种方法,包括 props、事件、Vuex 状态管理等,帮助开发者选择最适合项目需求的通信方式,提高开发效率和代码可维护性。
|
16天前
|
JavaScript 前端开发 开发者
vue学习第一章
欢迎来到我的博客!我是瑞雨溪,一名热爱JavaScript和Vue的大一学生。自学前端2年半,熟悉JavaScript与Vue,正向全栈方向发展。博客内容涵盖Vue基础、列表展示及计数器案例等,希望能对你有所帮助。关注我,持续更新中!🎉🎉🎉