vue 카 트 가감 실현

5308 단어 vue쇼핑 카 트
본 논문 의 사례 는 vue 가 카 트 의 가감 을 실현 하 는 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
보통 템 플 릿 에 표현 식 을 연결 합 니 다.템 플 릿 은 보기 구 조 를 설명 하 는 데 사 용 됩 니 다.템 플 릿 에 표현 식 이 너무 많은 논리 가 존재 하면 템 플 릿 이 비대 해 지고 유지 하기 가 어려워 집 니 다.따라서 논 리 를 간소화 하기 위해 특정한 속성의 값 이 다른 속성의 값 에 의존 할 때 우 리 는 계산 속성 을 사용 할 수 있다.
그러면 속성 을 계산 하 는 것 은 무엇 입 니까?
속성 을 계산 하 는 것 은 속성 에 의존 하 는 값 이 변 하면 이 속성의 값 은 자동 으로 업데이트 되 고 이와 관련 된 DOM 부분 도 동기 화 되 어 자동 으로 업데이트 된다 는 것 이다.
실 현 된 효과 도 는 다음 과 같다.

저 는 boottstrap 과 Vue 를 사용 해서 이 효 과 를 완 성 했 습 니 다.
우선 가방 가 져 오기:

<link rel="stylesheet" href="css/bootstrap.css" />
<script type="text/javascript" src="js/vue.js" ></script>
다음은 레이아웃 스타일:

<div id="app">
 <div class="container">
 <table class="table table-bordered table-hover"> 
 <tr>
 <td>
  <input type="checkbox" v-model="checkAll" @click="selectAll" />
 </td>
 <td>
     
 </td>
 <td>
     
 </td>
 <td>
     
 </td>
 <td>
     
 </td>
 <td>
   
 </td>
 </tr>
  <tr v-for="(item,index) in listInfo">
  <td>
  <input type="checkbox" :value="item.id" v-model="checkItem" @change="selectOne" />
  </td>
 <td>{{item.shopName}}</td>
 <td>{{item.shopPrice}}</td>
 <td>
 <button class="btn btn-default" @click="reduce(index)">-</button>
 <input type="text" v-model="item.shopCount" />
 <button class="btn btn-default" @click="add(index)">+</button>
 </td>
 <td>
 {{item.shopPrice*item.shopCount}}
 </td>
 <td>
 <button class="btn btn-warning" @click="del(index)">  </button>
 </td>
 </tr> 
 </table>
 <p class="text-right">
     :{{sum}}
 </p>
 <p class="text-right">
     :{{count}}
 </p>
 <hr />
 <form>
 <div class="form-group">
 <input class="form-control" placeholder="    " v-model="shopName" />
 </div>
 <div class="form-group">
 <input class="form-control" placeholder="    " v-model = "shopPrice"/>
 </div>
 <div class="form-group">
 <button class="btn btn-primary" type="button" @click="addInfo">  </button>
 </div>
 </form>
 </div>
</div>
마지막 으로 방법:

<script>
 new Vue({
 el:"#app",
 data:{
 listInfo:[
 {id:1,shopName:"  1",shopPrice:1000,shopCount:0},
 {id:2,shopName:"  2",shopPrice:2000,shopCount:0},
 {id:3,shopName:"  3",shopPrice:3000,shopCount:0},
 {id:4,shopName:"  4",shopPrice:4000,shopCount:0},
 {id:5,shopName:"  5",shopPrice:5000,shopCount:0},
 ],
 shopName:"",
 shopPrice:"",
 checkItem:[],
 checkAll:false
 },
 methods:{
 add:function(index){
 this.listInfo[index].shopCount++
 
 },
 reduce:function(index){
 if(this.listInfo[index].shopCount<=0){
 this.listInfo[index].shopCount = 0
 }else {
 this.listInfo[index].shopCount--
 }
 
 },
 del:function(index){
  this.listInfo.splice(index,1)
 },
 addInfo:function(){
// alert(1)
 
 var obj = {
 id:this.listInfo.length+1,
 shopName:this.shopName,
 shopPrice:this.shopPrice,
 shopCount:0
 }
 console.log(obj)
 this.listInfo.push(obj) 
 },
 
 selectAll:function(){
 this.checkItem = []
 if(!this.checkAll){
 for (var i=0;i<this.listInfo.length;i++) {
 this.checkItem.push(this.listInfo[i].id)
 }
 }else {
 this.checkItem = []
 this.checkAll = false
 }
 },
 selectOne(){
 console.log(this.checkItem)
 if(this.checkItem.length == this.listInfo.length){
 this.checkAll = true
 }else {
 this.checkAll = false
 }
 }
 },
 computed:{
 sum(){
 var total = 0
 for (var i=0;i<this.listInfo.length;i++) {
 total+=parseFloat(this.listInfo[i].shopPrice)*parseFloat(this.listInfo[i].shopCount)
 }
 return total 
 },
 count:function(){
 var total = 0
 for (var i=0;i<this.listInfo.length;i++) {
 total+=parseInt(this.listInfo[i].shopCount)
 }
 return total
 }
 }
 })
</script>
이상 의 코드 를 통 해 간단 한 카 트 가감 과 추가 삭 제 를 실현 할 수 있 습 니 다!
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기