购物车啊

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <!--<script type="text/javascript" src="../../angular/angular.js" ></script>-->
        <link rel="stylesheet" href="../../ionic/css/ionic.css" />
        <script type="text/javascript" src="../../ionic/js/ionic.bundle.min.js"></script>
        <script>
            var app = angular.module("myApp", ["ionic"]);
            app.controller("myCtrl", function($scope) {
                $scope.items = [{
                    name: "纯手工制作木质时钟精致家具",
                    price: 150,
                    num: 1,
                    url: "../image/a.png",
                    state: false
                }, {
                    name: "纯手工制作木质时钟精致家具",
                    price: 119,
                    num: 2,
                    url: "../image/b.png",
                    state: false
                }, {
                    name: "纯手工制作木质时钟精致家具",
                    price: 120,
                    num: 0,
                    url: "../image/c.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) {
                        //alert(111);
                        for(index in $scope.items) {
                            //所有商品状态变为选中
                            $scope.items[index].state = false;
                        }
                        $scope.allPrice = 0;
                        $scope.selectAll = false;
                    } else {
                        //alert("222");
                        //遍历所有上面计算总价
                        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;
                            //alert($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>
        <style>
            #myInput {
                margin-right: 40px;
                margin-left: 50px;
            }
            
            img {
                vertical-align: middle;
                margin-top: 6px;
            }
            
            #selectAll {
                margin-right: 40px;
                margin-left: 80px;
            }
        </style>
    </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;" 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;">结算</button>
            </div>
            <!--<button οnmοuseοver="this.style.cursor='help'">asdf</button><br /><br /><br /><br /><br /><br /><br />-->
        </ion-content>
    </body>

</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值