用Vue2.0实现一个简单的购物车页面

在学习Vue的初级阶段,练习一个小的应用,即用Vue实现一个购物车页面。在学习过程中,能极大地体会到Vue的强大和方便,用更少的代码渲染完整的页面,减少了HTML代码的冗余。

首先,写出一个购物车页面的大致样式,相关代码及页面展示如下所示。

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>购物车</title>
<style>
	.fl{
		float: left;
	}
	.fr{
		float: right;
	}
	*{
		margin: 0;
		padding: 0;
	}
	.clearfix{
		zoom: 1;
	}
	.clearfix:after{
		clear: both;
	}
	.clearfix:after{
		content: '.';
		display: block;
		overflow: hidden;
		visibility: hidden;
		font-size: 0;
		line-height: 0;
		width: 0;
		height: 0;
	}
	a{
		text-decoration: none;
		color: #333;
	}
	img{
		vertical-align: middle;
	}
	     
    .page-shopping-cart {
        width: 1200px;
        margin: 50px auto;
        font-size: 14px;
        border: 1px solid #e3e3e3;
        border-top: 2px solid #317ee7; }
    .page-shopping-cart .cart-title {
        color: #317ee7;
        font-size: 16px;
        text-align: left;
        padding-left: 20px;
        line-height: 68px; }
    .page-shopping-cart .red-text {
        color: #e94826; }
    .page-shopping-cart .check-span {
        display: block;
        width: 24px;
        height: 20px;
        background: url("shopping_cart.png") no-repeat 0 0; }
    .page-shopping-cart .check-span.check-true {
        background: url("shopping_cart.png") no-repeat 0 -22px; }
    .page-shopping-cart .td-check {
        width: 70px; }
    .page-shopping-cart .td-product {
        width: 460px; }
    .page-shopping-cart .td-num, .page-shopping-cart .td-price, .page-shopping-cart .td-total {
        width: 160px; }
    .page-shopping-cart .td-do {
        width: 150px; }
    .page-shopping-cart .cart-product-title {
        text-align: center;
        height: 38px;
        line-height: 38px;
        padding: 0 20px;
        background: #f7f7f7;
        border-top: 1px solid #e3e3e3;
        border-bottom: 1px solid #e3e3e3; }
    .page-shopping-cart .cart-product-title .td-product {
        text-align: center;
        font-size: 14px; }
    .page-shopping-cart .cart-product-title .td-check {
        text-align: left; }
    .page-shopping-cart .cart-product-title .td-check .check-span {
        margin: 9px 6px 0 0; }
    .page-shopping-cart .cart-product {
        padding: 0 20px;
        text-align: center; }
    .page-shopping-cart .cart-product table {
        width: 100%;
        text-align: center;
        font-size: 14px; }
    .page-shopping-cart .cart-product table td {
        padding: 20px 0; }
    .page-shopping-cart .cart-product table tr {
        border-bottom: 1px dashed #e3e3e3; }
    .page-shopping-cart .cart-product table tr:last-child {
        border-bottom: none; }
    .page-shopping-cart .cart-product table .product-num {
        border: 1px solid #e3e3e3;
        display: inline-block;
        text-align: center; }
    .page-shopping-cart .cart-product table .product-num .num-do {
        width: 24px;
        height: 28px;
        display: block;
        background: #f7f7f7; }
    .page-shopping-cart .cart-product table .product-num .num-reduce span {
        background: url("shopping_cart.png") no-repeat -40px -22px;
        display: block;
        width: 6px;
        height: 2px;
        margin: 13px auto 0 auto; }
    .page-shopping-cart .cart-product table .product-num .num-add span {
        background: url("shopping_cart.png") no-repeat -60px -22px;
        display: block;
        width: 8px;
        height: 8px;
        margin: 10px auto 0 auto; }
    .page-shopping-cart .cart-product table .product-num .num-input {
        width: 42px;
        height: 28px;
        line-height: 28px;
        border: none;
        text-align: center; }
    .page-shopping-cart .cart-product table .td-product {
        text-align: left;
        font-size: 12px;
        line-height: 20px; }
    .page-shopping-cart .cart-product table .td-product img {
        border: 1px solid #e3e3e3;
        margin-right: 10px; }
    .page-shopping-cart .cart-product table .td-product .product-info {
        display: inline-block;
        vertical-align: middle; }
    .page-shopping-cart .cart-product table .td-do {
        font-size: 12px; }
    .page-shopping-cart .cart-product-info {
        height: 50px;
        line-height: 50px;
        background: #f7f7f7;
        padding-left: 20px; }
    .page-shopping-cart .cart-product-info .delect-product {
        color: #666; }
    .page-shopping-cart .cart-product-info .delect-product span {
        display: inline-block;
        vertical-align: top;
        margin: 18px 8px 0 0;
        width: 13px;
        height: 15px;
        background: url("shopping_cart.png") no-repeat -60px 0; }
    .page-shopping-cart .cart-product-info .product-total {
        font-size: 14px;
        color: #e94826; }
    .page-shopping-cart .cart-product-info .product-total span {
        font-size: 20px; }
    .page-shopping-cart .cart-product-info .check-num {
        color: #333; }
    .page-shopping-cart .cart-product-info .check-num span {
        color: #e94826; }
    .page-shopping-cart .cart-product-info .keep-shopping {
        color: #666;
        margin-left: 40px; }
    .page-shopping-cart .cart-product-info .keep-shopping span {
        display: inline-block;
        vertical-align: top;
        margin: 18px 8px 0 0;
        width: 15px;
        height: 15px;
        background: url("shopping_cart.png") no-repeat -40px 0; }
    .page-shopping-cart .cart-product-info .btn-buy {
        height: 50px;
        color: #fff;
        font-size: 20px;
        display: block;
        width: 110px;
        background: #ff7700;
        text-align: center;
        margin-left: 30px; }
    .page-shopping-cart .cart-worder {
        padding: 20px; }
    .page-shopping-cart .cart-worder .choose-worder {
        color: #fff;
        display: block;
        background: #39e;
        width: 140px;
        height: 40px;
        line-height: 40px;
        border-radius: 4px;
        text-align: center;
        margin-right: 20px; }
    .page-shopping-cart .cart-worder .choose-worder span {
        display: inline-block;
        vertical-align: top;
        margin: 9px 10px 0 0;
        width: 22px;
        height: 22px;
        background: url("shopping_cart.png") no-repeat -92px 0; }
    .page-shopping-cart .cart-worder .worker-info {
        color: #666; }
    .page-shopping-cart .cart-worder .worker-info img {
        border-radius: 100%;
        margin-right: 10px; }
    .page-shopping-cart .cart-worder .worker-info span {
        color: #000; }

    .choose-worker-box {
        width: 620px;
        background: #fff; }
    .choose-worker-box .box-title {
        height: 40px;
        line-height: 40px;
        background: #F7F7F7;
        text-align: center;
        position: relative;
        font-size: 14px; }
    .choose-worker-box .box-title a {
        display: block;
        position: absolute;
        top: 15px;
        right: 16px;
        width: 10px;
        height: 10px;
        background: url("shopping_cart.png") no-repeat -80px 0; }
    .choose-worker-box .box-title a:hover {
        background: url("shopping_cart.png") no-repeat -80px -22px; }
    .choose-worker-box .worker-list {
        padding-top: 30px;
        height: 134px;
        overflow-y: auto; }
    .choose-worker-box .worker-list li {
        float: left;
        width: 25%;
        text-align: center;
        margin-bottom: 30px; }
    .choose-worker-box .worker-list li p {
        margin-top: 8px; }
    .choose-worker-box .worker-list li.cur a {
        color: #f70; }
    .choose-worker-box .worker-list li.cur a img {
        border: 1px solid #f70; }
    .choose-worker-box .worker-list li a:hover {
        color: #f70; }
    .choose-worker-box .worker-list li a:hover img {
        border: 1px solid #f70; }
    .choose-worker-box .worker-list li img {
        border: 1px solid #fff;
        border-radius: 100%; }

</style>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

</head>
<body>
<div class="page-shopping-cart" id="shopping-cart">
	<h4 class="cart-title">购物车</h4>
	<div class="cart-product-title clearfix">
		<div class="td-check fl"><span class="check-span fl check-all">全选</span></div>
		<div class="td-product fl">商品</div>
		<div class="td-num fl">数量</div>
		<div class="td-price fl">单价(元)</div>
		<div class="td-total fl">金额(元)</div>
		<div class="td-do fl">操作</div>
	</div>
	<div class="cart-product clearfix">
		<table>
			<tbody>
				<tr>
					<td class="td-check"><span class="check-span"></span></td>
					<td class="td-product">
						<img src="img/skirt.png" width="90" height="90">
						<div class="product-info">
					        <h6>【一米阳光】碎花雪纺连衣裙中长款夏装复古喇叭袖百褶裙子收腰衬衫裙</h6>
	                        <p>小立领V领荷叶边百褶裙摆小喇叭袖</p>
	                        <p>材质成分: 聚酯纤维100%&nbsp;&nbsp;裙型: 百褶裙</p>
	                        <p>配送仓储:浙江杭州仓储</p>
						</div>
						<div class="clearfix"></div>
					</td>
					<td class="td-num">
						<div class="product-num">
							<a href="javascript:;" class="num-reduce num-do fl"><span></span></a>
							<input type="text" class="num-input" value="3">
							<a href="javascript:;" class="num-add num-do fr"><span></span></a>
						</div>
					</td>
					<td class="td-price">
						<p class="red-text">¥<span class="price-text">200</span>.00</p>
					</td>
					<td class="td-total">
						<p class="red-text">¥<span class="price-text">200</span>.00</p>
					</td>
					<td class="td-do"><a href="javascript:;" class="product-delect">删除</a></td>
				</tr>
			</tbody>
		</table>
	</div>
	<div class="cart-product-info">
		<a class="delect-product" href="javascript:;"><span>删除所选商品</span></a>
		<a class="keep-shopping" href="#"><span>继续购物</span></a>
		<p class="fr check-num"><span>2</span>件商品总计(不含运费):</p>
		<p class="fr product-total">¥<span>1600</span></p>
		<a class="btn-buy fr" href="javascript:;">去结算</a>
	</div>
	<div class="cart-worder clearfix">
		<a href="javascript:;" class="choose-worder fl"><span>绑定跟单员</span></a>
		<div class="worker-info fl"></div>
	</div>
</div>
</body>
<script>
	new vue({
		el:'#shopping-cart',
		data:{},
		computed:{},
		methods:{}
	})
</script>
</html>

然后,将页面中的数据用Vue实现绑定,渲染页面。并书写相关方法,实现商品的选择以及商品数量、商品运费和商品总额等的结果显示。完整代码以及页面展示如下所示:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Shopping Cart</title>
<style>
*{
	padding: 0;
	margin: 0;
	font-size: 16px;
	box-sizing: border-box;
	-moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari */
}
a{
	text-decoration: none;
}
h1 {
	text-align: center;
	/*margin: 0 auto;此种方法需为元素设置具体的大小*/
	font-size: 20px;
	font-weight: normal;
    margin-top: 20px;
}
.clearfix:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: .1px;
  font-size: .1em;
  line-height: 0;
  clear: both;
}
.shop-cart , .choose-item{
	width: 600px;
	margin: 30px auto;
}
.choose-all{
	margin-left: 20px;
}
.quantity-selector{
   margin: 0 auto;
   width: 100%;
   line-height: 30px;
   border: 1px solid #d1d6e4;
   border-radius: 3px;
}
.quantity-selector .reduce, 
.quantity-selector .add {
  float: left;
  width: 33.33%;
  border-right: 1px solid #d1d6e4;
  text-align: center;
  cursor: pointer;
}
.quantity-selector .number {
  float: left;
  width: 33.33%;
  height: 30px;
  border: none;
  padding-left: 10px;
  text-align: center;
}
.quantity-selector .add {
  border-left: 1px solid #d1d6e4;
  border-right: none;
}
.quantity-selector .disable {
  color: #d2d2d2;
  cursor: default;
}

label {
  cursor: pointer;
}
.shop-cart th {
  height: 40px;
  background: #ffd2d2;
  -webkit-text-stroke: 1px #e6caff;
  font-size: 18px;
}
.shop-cart td {
  height: 60px;
  text-align: center;
}
.td-product {
  margin-top: 20px;
  display: flex;
}
.td-product span {
   font-size: 12px;
   margin-left: 20px;
   text-align: left;
}
.sum {
	margin-top: 20px;
	text-align: right;
}
.shop-footer {
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 600px;
}
</style>	
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
</head>
<body>
<div id="app">
<h1>购物车<span v-on:click="calNumGoods">(共有(<span>{{numGoods}}</span>)件商品)</span></h1>

<div class="shop-cart"  v-for="(item, index) in goodsObj">
	<p>
		<span>{{item.name}}</span>
		<label class="choose-all">
			<input type="checkbox" name="all" v-on:click="chooseShopGoods(index)" v-model="item.checked"><span>全选</span>
		</label>
	</p>
	<table class="choose-item">
		<colgroup>
			<col width="10%">
			<col width="30%">
			<col width="20%">
			<col width="15%">
			<col width="15%">
			<col width="10%">
		</colgroup>
		<thead class="thead">
			<tr>
				<th>选择</th>
				<th>商品</th>
				<th>数量</th>
				<th>单价</th>
				<th>运费</th>
				<th>操作</th>

			</tr>
		</thead>
		<tbody>
			<tr v-for="(item1,index1) in item.list">
				<td class="td-choose">
					<input type="checkbox" name="all" v-model="item1.checked" v-on:click="choose(index, index1)">
				</td>
				<td class="td-product">
					<img :src="item1.img" width="40%" height="60px">
					<span>{{item1.des}}</span>
				</td>
				<td class="td-num">
					<div class="quantity-selector clearfix">
						<span class="reduce" v-on:click="numChange(index,index1,-1)" :class="{'disabled':item1.num==1}">-</span>
						<input class="number" type="number" :value="item1.num" v-bind:data-realStock="item1.realStock" v-on:keyUp="numEntry(index, index1)" v-on:keyDown="numEntry(index, index1)" v-model="item1.num"/>
						<span class="add" v-on:click="numChange(index,index1,1)" :class="{'disabled':item1.num==item1.realStock}">+</span>
					</div>
				</td>
				<td class="td-price">¥{{item1.price.toFixed(2)}}</td>
				<td class="td-trans-price">¥{{item1.fare.toFixed(2)}}</td>
				<td class="td-do">
					<a href="javascript:;" v-on:click="delGoods(index, index1)">删除</a>
				</td>
			</tr>
			
		</tbody>
	</table>
	<div class="sum">
		<p>店铺总运费:¥<span v-html="calEveryFare(index)"></span></p>
		<p>商品总金额:¥<span v-html="calEveryStore(index)"></span></p>
	</div>
</div>
	<div class="shop-footer">
		<label>
			<input type="checkbox" v-on:click="chooseAllGoods($event)" v-model="allChecked">
			<span>全选</span>
		</label>
		<div class="all-sum">
			<p>商品总运费:¥<span>{{totalFare.toFixed(2)}}</span></p>
			<p>商品总金额:¥<span>{{totalPrice.toFixed(2)}}</span></p>
		</div>
	</div>

</div>


<script>
var goodsObj = [
  {
  	name:'一米阳光',
  	checked:false,
  	list:[{
     img:'img/yiskirt.jpg',
     des:'一米阳光五分袖蕾丝拼接收腰连衣裙802226',
     num:1,
     realStock:100,
     price:160.00,
     fare:10.00,
     checked:false,
  	},
  	{
     img:'img/yiskirt2.jpg',
     des:'一米阳光长款蝴蝶结蕾丝透视连衣裙女夏复古气质喇叭袖荷叶领长裙',
     num:2,
     realStock:100,
     price:300.00,
     fare:10.00,
     checked:false,
  	}]
  },
  {
  	name:'梅子熟了',
  	checked:false,
  	list:[{
     img:'img/meizi.jpg',
     des:'梅子熟了文艺荷叶边雪纺吊带 复古chic小心机背心女2018夏季新款',
     num:1,
     realStock:100,
     price:50.00,
     fare:5.02,
     checked:false,
  	},
  	{
     img:'img/meizi2.jpg',
     des:'梅子熟了文艺小心机衬衫 复古港味设计感长袖上衣女2018秋装新款',
     num:1,
     realStock:100,
     price:100.00,
     fare:0.00,
     checked:false,
  	}]
  }
 ];
new Vue({
	el:'#app',
	data:{
	goodsObj:goodsObj,
	totalPrice:0,
	totalFare:0,
	allChecked:false,
	numGoods:0,
    },

	methods:{
		//计算购物车里的商品总数
		calNumGoods(){
		   this.numGoods = 0;
		   for( var i = 0, len = this.goodsObj.length; i < len; i++){
		   	var len1 = this.goodsObj[i]['list'].length;
		   	this.numGoods += len1;
		   }
		},
		//选择全部的商品
		chooseAllGoods(){
		  var flag = true;
	      if ( this.allChecked ) {
	        flag = false;
	      }
	      for ( var i = 0, len = this.goodsObj.length; i < len; i++ ) {
	        this.goodsObj[i]['checked'] = flag;
	        var list = this.goodsObj[i]['list'];
	        for ( var k = 0, len1 = list.length; k < len1; k++ ) {
	          list[k]['checked'] = flag;
	        }
	      }
	      this.allChecked = !this.allChecked;
	      this.calTotalPrice();
	      this.calTotalFare();
	    },
	    //每个店铺商品全选
	    chooseShopGoods(index){
	      var list = this.goodsObj[index]['list'],
          len = list.length;
	      if ( this.goodsObj[index]['checked'] ){
	         for (var i = 0; i < len; i++ ) {
	          list[i]['checked'] = false;
	         }
	      } else {
	        for (var i = 0; i < len; i++ ) {
	          list[i]['checked'] = true;
	        }
	      }
	      this.goodsObj[index]['checked'] = !this.goodsObj[index]['checked'];

	      // 判断是否选择所有商品的全选
	      this.isChooseAll();

	      this.cal(index);

		},
		 //单个商品的选择
		 choose(index, index1){
		 	var list = this.goodsObj[index]['list'];
            var len = list.length;
            if ( list[index1]['checked'] ) {
              this.goodsObj[index]['checked'] = false;
              this.allChecked = false;
              list[index1]['checked'] = !list[index1]['checked'];
              } else {
               list[index1]['checked'] = !list[index1]['checked'];

		        // 判断是否选择当前店铺的全选
		        var flag = true;
		        for (var i = 0; i < len; i++ ) {
		          if ( list[i]['checked'] == false ) {
		            flag = false;
		            break;
		          }
		        }
		        flag == true ? this.goodsObj[index]['checked'] = true : this.goodsObj[index]['checked'] = false;
		      }

		      // 判断是否选择所有商品的全选
		      this.isChooseAll();

		      this.cal(index);
		    },
	        //判断是否选择所有商品的全选
	        isChooseAll(){
	          var flag1 = true;
		      for ( var i = 0, len = this.goodsObj.length; i < len; i++ ) {
		        if ( this.goodsObj[i]['checked'] == false ){
		          flag1 = false;
		          break;
		        }
		      }
		      flag1 == true ? this.allChecked = true : this.allChecked = false;
	        },
	        //控制商品的数量
	        numChange(index,index1,numChange){
              var goods = this.goodsObj[index]['list'][index1];

		      if ( numChange == 1 ) {
		        goods.num++;
		      } else if ( numChange == -1 ) {
		        goods.num--;
		      }

		      if ( goods.num <= 1 ) {
		        goods.num = 1;
		      } 

		      if ( goods.num >= goods.realStock ) {
		        goods.num = goods.realStock;
		      }

		      this.cal(index);
	        },
	        //用户填写数量的容错处理
	        numEntry(index,index1){
	        	var goods = this.goodsObj[index]['list'][index1];
	        	if ( goods.num <= 1 ) {
		          goods.num = 1;
		        } 

		        if ( goods.num >= goods.realStock ) {
		           goods.num = goods.realStock;
		        }

		      this.cal(index);
	        },
	        //计算每个店铺商品总额
	        calEveryStore(index){
	        	var everyStoreMoney = 0,
	            list = this.goodsObj[index]['list'];
	            list.forEach(function(item, index, arr) {
	              if ( list[index]['checked'] ) { 
	                everyStoreMoney += parseFloat(item.price) * parseFloat(item.num);
                   }
                 });
	            return everyStoreMoney.toFixed(2);
	            // return everyStoreMoney;
	        },
            //计算每个店铺运费总额
	        calEveryFare(index){
	        	var everyStoreFare = 0,
	            list = this.goodsObj[index]['list'];
	            list.forEach(function(item, index, arr) {
	              if ( list[index]['checked'] ) { 
	                 everyStoreFare += parseFloat(item.fare) * parseFloat(item.num);
                   }

                });
                 return everyStoreFare.toFixed(2);
                 // return everyStoreFare;
	        },
	        //计算全部商品总额
	        calTotalPrice(){
              var oThis = this;
		      /*this.totalPrice = 0;*/
		      for ( var i = 0, len = this.goodsObj.length; i < len; i++ ) {
		        var list = this.goodsObj[i]['list'];
		        list.forEach(function(item, index, arr) {
		          if ( list[index]['checked'] ) {
		            oThis.totalPrice+= parseFloat(item.price) * parseFloat(item.num);
		          }
		        });
		      }
	        },
	        //计算全部商品总运费
	        calTotalFare(){
              var oThis = this;
		      this.totalFare = 0;
		      for ( var i = 0, len = this.goodsObj.length; i < len; i++ ) {
		        var list = this.goodsObj[i]['list'];
		        list.forEach(function(item, index, arr) {
		          if ( list[index]['checked'] ) {
		            oThis.totalFare+= parseFloat(item.fare) * parseFloat(item.num);
		          }
		        });
		      }
	        },
	        // 删除操作
		    delGoods(index, index1) {
		      console.log(index);
		      console.log(index1);
		      this.goodsObj[index]['list'].splice(index1, 1);
		      this.cal(index);
		    },
	        // 计算方法集合
		    cal(index) {
		      this.calEveryStore(index);
		      this.calEveryFare(index);
		      this.calTotalPrice();
		      this.calTotalFare();
		    }
	}

})
</script>
</body>
</html>

 

  • 5
    点赞
  • 28
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值