<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content='width=device-width initial-scale=1.0, user- scalable=no'>
<link rel="stylesheet" href="./bootstrap/css/bootstrap.css">
<title>shopping</title>
</head>
<body>
<div class="container">
<new></new>
</div>
<script src="vue.js"></script>
<script>
// 父組件
Vue.component("new",{
template:`
<table class="table table-bordered">
<thead>
<tr>
<th class="text-center">編號</th>
<th class="text-center">名稱</th>
<th class="text-center">單價</th>
<th class="text-center">數量</th>
<th class="text-center">總價</th>
</tr>
</thead>
<child1 v-bind:list="arr"></child1>
</table>
`,
data:function(){
return{
arr:[
{one:"蘋果",two:3,three:1,four:3},
{one:"菠蘿",two:2,three:1,four:2},
{one:"芒果",two:5,three:1,four:5}
]
}
}
})
// 子組件
Vue.component('child1',{
props:['list'],
template:`
<tbody class="text-center">
<tr v-for="(value,index) in list">
<td>{{index+1}}</td>
<td>{{value.one}}</td>
<td>{{value.two}}</td>
<td>
<button @click="btn1(index)">+</button>
<span>{{value.three}}</span>
<button @click="add(index)">-</button>
</td>
<td>{{value.four}}</td>
</tr>
<tr>
<td colspan="5" class="text-center">總計:{{arrs}}.00</td>
</tr>
</tbody>
` ,
data:function(){
return{
arrs:10
}
},
methods:{
btn1:function(ind){
// 數量
this.list[ind].three++;
// 小計:
this.list[ind].four=this.list[ind].two*this.list[ind].three;
// 總價
this.zongjia();
},
add:function(ind){
// 數量
if(this.list[ind].three>1){
this.list[ind].three--;
}
// 小計:
this.list[ind].four=this.list[ind].two*this.list[ind].three;
// 總價:
this.zongjia();
},
zongjia:function(){
for(var i=0,lis=0;i<this.list.length;i++){
lis+=this.list[i].four;
}
this.arrs=lis;
}
}
})
new Vue({
el:'.container'
})
</script>
</body>
</html>
Vue.js 組件傳值購物車
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。
- 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人,你說我怎么就攤上這事。” “怎么了?”我有些...
- 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發上,一...
- 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了?” 一聲冷哼從身側響起,我...