购物车=加减+计算+总和+全选+反选+删除

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <link rel="stylesheet" href="ionic/ionic.css" />
        <script type="text/javascript" src="ionic/ionic.bundle.min.js" ></script>
        <style type="text/css">
            #myInput {
                margin-right: 40px;
                margin-left: 50px;
            }
            img{
                vertical-align: middle;
                margin-top: 6px;
            }
            #selectAll {
                margin-right: 40px;
                margin-left: 80px;
            }
        </style>
        <script>
            var app=angular.module("myApp",["ionic"]);
            app.controller("myCtrl",function($scope){
                $scope.items=[{
                    name:"纯手工制作木质时钟精致家具",
                    price:150,
                    num:1,
                    url:"img/a1.png",
                    state: false
                },
                {
                    name:"纯手工制作木质时钟精致家具",
                    price:119,
                    num:2,
                    url:"img/a2.png",
                    state: false
                },
                {
                    name:"纯手工制作木质时钟精致家具",
                    price:120,
                    num:0,
                    url:"img/a3.png",
                    state: false
                }
                ];
                //完成商品的加减功能
                $scope.less=function(index){
                    if ($scope.items[index].num==0)
                    {
                        alert("已经减到0了");
                    } else
                    {
                        $scope.items[index].num -=1;
                        $scope.allPrice=0;
                        for (index in $scope.items)
                        {
                            if ($scope.items[index].state)
                            {
                                $scope.allPrice = $scope.items[index].num * $scope.items[index].price + $scope.allPrice;
                            }
                        }
                    }
                }
                 //数量增加
                 $scope.add=function(index){
                     $scope.items[index].num +=1;
                    $scope.allPrice=0;
                        for (index in $scope.items)
                        {
                            if ($scope.items[index].state)
                            {
                                $scope.allPrice = $scope.items[index].num * $scope.items[index].price + $scope.allPrice;
                            }
                        }
                 }
                //删除功能
                $scope.delete = function(index) {
                    if(window.confirm("确定要删除当前项吗?")) {
                        $scope.items.splice(index, 1);
                        
                        $scope.allPrice = 0;
                        for(index in $scope.items) {
                            if($scope.items[index].state) {
                                $scope.allPrice = $scope.items[index].num * $scope.items[index].price + $scope.allPrice;
                            }
                        }
                    }
                }
                
                 //检测是否有选中项,计算总价
                 $scope.selectAll=false;
                 $scope.allPrice=0;
                 $scope.checkSelAll=function(){
                     //判断全选按钮是否选中
                     if ($scope.selectAll)
                     {
                         for (index in $scope.items)
                         {
                             //所有商品状态变为选中
                             $scope.items[index].state=false;
                         }
                         $scope.allPrice=0;
                         $scope.selectAll=false;
                     } else
                     {
                         //遍历所有上面计算总价
                         for (index in $scope.items)
                         {
                             //所有商品状态变为选中
                             $scope.items[index].state=true;
                         }
                         for(index in $scope.items)
                         {
                             $scope.allPrice = $scope.items[index].num * $scope.items[index].price + $scope.allPrice;
                         }
                         $scope.selectAll=true;
                     }
                 }
                
                 //选中每一个多选按钮,计算当前的总价
                 $scope.selectItem=function(index)
                 {
                     $scope.allPrice=0;
                     for(index in $scope.items)
                         {
                             //所有商品状态变为选中
                             if ($scope.items[index].state)
                             {
                                 $scope.allPrice = $scope.items[index].num * $scope.items[index].price + $scope.allPrice;
                             }
                             
                         }
                 }
                
            });
        </script>
    </head>
    <body ng-app="myApp" ng-controller="myCtrl">
        <ion-header-bar align-title="center" class="bar-positive">
            <h1 class="title">购物车</h1>
        </ion-header-bar>
        <ion-content>
            <ion-checkbox ng-model="isChecked">趣艺工坊</ion-checkbox>
            <!--列表-->
            <ion-list>
                <ion-item ng-repeat="item in items">
                    <div style="width: 100%; height: 100px;">
                        <div style="float: left;">
                            <input id="myInput" ng-click="selectItem($index)" type="checkbox" ng-model="item.state" />
                            <img src="{{item.url}}" />
                        </div>
                        <div style="float: left;margin-left: 50px;">
                            <span>{{item.name}}</span><br/><br/>
                            <span>{{item.price}}</span><br /><br />
                            <button ng-click="less($index)">-</button>
                            <span>{{item.num}}</span>
                            <button ng-click="add($index)">+</button>
                            <span style="margin-left: 200px;color:#FF3B30;" ng-click="delete($index)">删除</span>
                        </div>
                    </div>
                </ion-item>
            </ion-list>
            <div style="width: 100%; height: 100px; margin-top: 50px;">
                <input id="selectAll" type="checkbox" ng-model="selectAll" ng-click="checkSelAll()" />全选
                <span style="margin-left: 250px;">合计:<span>{{allPrice | currency:"¥:"}}</span></span>
                <!--<button style="margin-left: 50px;">--><a style="margin-left: 50px;" href="https://www.alipay.com/)">结算</a><!--</button>-->
            </div>
        </ion-content>
    </body>
</html>

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值