本文实例讲述了vue实现的仿淘宝购物车功能。分享给大家供大家参考,具体如下:
下面是一张众所周知的淘宝购物车页面,今天要讲解的案例就是用vue.js做一个类似的页面
首先简单介绍一下可能会用到的一些vue.js的用法:
v-bind,绑定属性;例如v-bind:class="{'class1':flag}",这是常用的绑定样式的方法,如果flag为true则class=class1;v-bind:src="/UploadFiles/2021-04-02/image">
v-if="flag"与v-show="flag",如果flag为true,则绑定的为“可见”,不同的是v-show是一开始就渲染在DOM中的,改变的则是它的display而已,而v-if为false则是从HTML代码中移除;
v-on:或@,样式绑定v-on:click="dosomething()"或者@click="dosomething()",点击触发dosomething函数;
v-for循环,v-for="item in items",items为数组,item为items数组的值而不是索引;
要注意的是当this作用域的改变:当this作用域改变是我们设置var self = this,在之后的使用中用self代替;
下面是HTML代码:
<html> <head> <title>购物车</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="shop.css" rel="external nofollow" > </head> <body> <div id="app"> <div class="header"><span style="margin-left: 75px;">商品</span><span style="margin-left: 70px;">单价</span><span style="margin-left: 35px;">数量</span><span style="margin-left: 40px;">总价</span></div> <div v-for="item in goods"> <div class="show" v-show="item.selected"> <span class="choice" v-bind:class="{'checked':item.checked}" @click="check(item)"></span> <div style="float:left;margin-left: 20px;"><img v-bind:src="/UploadFiles/2021-04-02/item.image">下面的是js的代码:
var vm = new Vue({ el:'#app', data:{ total: 0, totalAll: 0, goods: [],//商品为数组 checkAllFlag: false, seen: false, delFlag: true }, mounted: function () { this.goodlist(); }, methods:{ //改变商品数量 changeNum:function (item,flag) { if (flag>0) { item.number++; }else{ item.number--; if(item.number<1){ item.number = 1; } } this.totalMoney(); }, //是否选中 check:function (item) { if(typeof item.checked == 'undefined'){ this.$set(item,"checked",true); //局部为item添加“checked”,值为true }else{ item.checked = !item.checked; } this.totalMoney(); }, //通过$http.get方法ajax地交互获取商品信息,一定要引入vue-resource组件 goodlist:function () { var self = this; this.$http.get("shop.json").then(function (res) { self.goods = res.data.result.goods; },function () { console.log("failed"); }); }, //是否全选 checkAll:function (flag) { this.checkAllFlag = flag; var self = this; this.goods.forEach(function(value,index){ if(typeof value.checked == 'undefined'){ self.$set(value,"checked",self.checkAllFlag); }else{ value.checked = self.checkAllFlag; } }); this.totalMoney(); }, //结算选中商品的价格 totalMoney:function () { //初始化总价 this.totalAll = 0; var self =this; //通过foreach循环判断是否被选中 this.goods.forEach(function(value,index){ if(value.checked){ self.totalAll += value.price * value.number; } }); } } })下面是CSS代码:
*{padding: 0;margin: 0;} a{text-decoration: none;color: black;} #app{width: 500px;height: 600px;border: 1px solid;position: absolute;margin-top:20px;margin-left:50px;} .header{width: 500px;height: 30px;line-height: 30px;background-color: darkmagenta;} .header span{display: inline-block;width: 50px;height: 30px;} .show{width: 500px;height: 85px;margin-top: 5px;} #footer{position: absolute;bottom: 0;width: 500px;height: 50px;background-color: #c7c7c9;} .output{width: 40px;height: 20px;} .image{width: 60px;height: 80px;float:left;} .choice{display: inline-block;width: 15px;height: 15px;border-radius: 15px;border: 1px solid;float: left;margin-top: 30px;margin-left: 20px;} .checked{background-color: darkorange;} .icon{background-image: url(del.png);display: inline-block;width: 30px;height: 30px;margin-left: 50px;margin-top: 20px;} .text{display:inline-block;width:50px;height:20px;line-height:20px;font:12px;margin-top:20px;margin-left:5px;float:left;} .count{width:100px;height:40px;background-color:red;line-height:40px;font-size:16px;margin-left:40px;margin-top:5px;} #footer a{display:inline-block;margin-left:5px;height:22px;} #info{width:250px;height:100px;position:absolute;border:1px solid;margin-top:-250px;margin-left:120px;background-color:#c7c7c9;text-align:center;z-index:999;} .get{width:80px;height:30px;font:17px;margin-top:10px;} .shadow{width:100%;height:100%;background-color:black;opacity:0.8;margin-top:-480px;z-index:1;} .close{position:absolute;right:2px;top:-5px;cursor:pointer;}下面是json代码:
{ "status":1, "result":{ "total":50, "goods":[ { "name":"香烟", "price":15, "number":1, "selected": true, "image": "./img/xiangyan.jpg", "alt": "香烟" }, { "name": "啤酒", "price": 12, "number": 1, "selected": true, "image": "./img/pjiu.jpg", "alt": "啤酒" }, { "name": "打火机", "price": 2, "number": 1, "selected": true, "image": "./img/fire.jpg", "alt": "打火机" }, { "name": "鸡腿", "price": 5, "number": 1, "selected": true, "image": "./img/chick.jpg", "alt": "鸡腿" }, { "name": "垃圾袋", "price": 8, "number": 1, "selected": true, "image": "./img/bush.jpg", "alt": "垃圾袋" } ] }, "message":"" }实现的结果如下图:
代码下载:https://github.com/createor/vue/raw/master/vue.zip
或者点击此处本站下载。
希望本文所述对大家vue.js程序设计有所帮助。
vue,仿淘宝,购物车
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
- 中国武警男声合唱团《辉煌之声1天路》[DTS-WAV分轨]
- 紫薇《旧曲新韵》[320K/MP3][175.29MB]
- 紫薇《旧曲新韵》[FLAC/分轨][550.18MB]
- 周深《反深代词》[先听版][320K/MP3][72.71MB]
- 李佳薇.2024-会发光的【黑籁音乐】【FLAC分轨】
- 后弦.2012-很有爱【天浩盛世】【WAV+CUE】
- 林俊吉.2012-将你惜命命【美华】【WAV+CUE】
- 晓雅《分享》DTS-WAV
- 黑鸭子2008-飞歌[首版][WAV+CUE]
- 黄乙玲1989-水泼落地难收回[日本天龙版][WAV+CUE]
- 周深《反深代词》[先听版][FLAC/分轨][310.97MB]
- 姜育恒1984《什么时候·串起又散落》台湾复刻版[WAV+CUE][1G]
- 那英《如今》引进版[WAV+CUE][1G]
- 蔡幸娟.1991-真的让我爱你吗【飞碟】【WAV+CUE】
- 群星.2024-好团圆电视剧原声带【TME】【FLAC分轨】