<div id="itany">
<table border='1' bordercolor='black' cellspacing='0'>
<tr>
<th>数量</th>
<th>名称</th>
<th>单价</th>
<th>数量</th>
<th>总价</th>
</tr>
<tr v-for='(value,index) in arr'>
<td>{{index+1}}</td>
<td>{{value.name}}</td>
<td>${{value.money}}</td>
<td>
<button v-on:click="clear(index)">-</button>
{{value.how}}
<button v-on:click="add(index)">+</button>
</td>
<td>{{value.price}}</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td>总价{{all}}</td>
</tr>
</table>
</div>
<script src="vue.js"></script>
<script>
new Vue({
el:'#itany',
data:{
arr:[
{name:"kar98k",money:3999,how:0,price:0},
{name:"M4A1",money:2890,how:0,price:0},
{name:"AWM",money:3259,how:0,price:0},
],
all:0
},
methods:{
clear:function(i){
if(this.arr[i].how>=1){
this.arr[i].how-=1,
this.arr[i].price=this.arr[i].how*this.arr[i].money,
this.all-=this.arr[i].money
}
},
add:function(i){
this.arr[i].how+=1,
this.arr[i].price=this.arr[i].how*this.arr[i].money,
this.all+=this.arr[i].money
}
}
})
</script>
作业:购物车
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 023|决策时间:用户思考了很久,又把商品放回去了,怎么办? 什么是“决策时间”?消费者的注意力时长越来越短,人们...
- 因为最近一段时间集中的看建材,渐渐地对建材市场的一些促销套路有了初步的了解。今天就来盘点下我们常见的建材促销方式吧...