为了账号安全,请及时绑定邮箱和手机立即绑定

用Angular.js代码,模仿淘宝购物车全选功能

HTML :

<div ng-controller="demoController as $ctrl" ng-repeat="table in $ctrl.tableData" >
    <table ng-table="$ctrl.tableParams" class="table table-condensed">
        <thead>
        <th><input type="checkbox" ng-model="$ctrl.checkboxes[table[0].id].checked" class="select-all" ng-click="$ctrl.selectedAll(table[0].id)"/></th>
        <th>{{ 'IMAGE' | translate }}</th>
        <th>{{ 'DESCRIPTION' | translate }}</th>
        <th>{{ 'VARIATION' | translate }}</th>
        <th>{{ 'PRICE' | translate }}</th>
        <th>{{ 'SELLER_INVENTORY' | translate }}</th>
        <th>{{ 'REQUEST_QUANTITIES' | translate }}</th>
        <th>{{ 'ACTION' | translate }}</th>
        </thead>
        <tbody>
        <tr ng-repeat="row in table">
            <td><input type="checkbox" ng-model="row.checked" ng-click="$ctrl.selectedOne(row)"/></td>
            <td><img class="lazyload" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC" data-original="{{row.productImage}}" alt=""></td>
            <td>{{row.description}}</td>
            <td>{{row.size}}</td>
            <td>{{row.priceCost}}</td>
            <td>{{row.usableQty}}</td>
            <td>{{row.purchaseQty}}</td>
            <td>
                <button class="btn" ng-click="$ctrl.delete(row.id)">{{'BTN_DELETE'|translate}}</button>
            </td>
        </tr>
        </tbody>
    </table>
    <div>
        <div>{{'PRODUCT_QUANTITY'|translate}}:
            <span>{{table.totalQuantity}}</span>
        </div>
        <div>{{'TOTAL'|translate}}:
            <span>{{table.totalQty}}</span>
        </div>
        <button class="btn" ng-click="$ctrl.confirmed(table)">{{'BTN_CONFIRM'|translate}}</button>
    </div>
</div>

JS:

'use strict';

angular.module('app.xxx1').controller('demoController', function ($window, $uibModal, $stateParams, $element, $scope, $state, NgTableParams, productDataService) {

let sessionStorage = $window.sessionStorage;
this.checkboxes = {};
this.seller = null;

this.init = () => {
productDataService.getProductList({id: null}).then(res => {
this.tableData = res.data;
angular.forEach(this.tableData, (item) => {
this.tableDataList = item;
this.drawTable();
this.checkboxes[item[0].id] = {checked: true};
_.extend(this.tableDataList, {totalQty: 0, totalQuantity: 0});
angular.forEach(item, (r) => {
if (r.active === true) {
r.checked = true;
}
});
this.sumQty(item[0].id);
});
});
};

this.drawTable = () => {
this.tableParams = new NgTableParams({
count: 100
}, {
counts: [],
dataset: this.tableDataList
});
};
this.sumQty = (id) => {
let totalQty = 0;
let totalQuantity = 0;
angular.forEach(this.tableData[id], (item) => {
if (item.checked === true) {
totalQty += item.purchaseQty;
totalQuantity++;
}
});
this.tableData[id].totalQty = totalQty;
this.tableData[id].totalQuantity = totalQuantity;
};
this.selectedAll = (id) => {
let checked = this.checkboxes[id].checked;
angular.forEach(this.tableData[id], (item) => {
if (item.active === true) {
item.checked = checked;
}
});
this.sumQty(id);
};

this.selectedOne = (item) => {
let id = item.id;
let checked = item.checked;
if (!checked) {
this.checkboxes[id].checked = checked;
} else {
let activeItems = _.filter(this.tableData[id], (item) => {
return item.active;
});
let checkedAll = _.every(activeItems, (item) => {
return item.checked;
});
this.checkboxes[id].checked = checkedAll;
}
this.sumQty(id);
};

this.delete = (id) => {
productDataService.removeProduct({'id': id}).then(res => {
if (res.data === true) {
this.init();
}
});
};

this.confirmed = (table) => {
let activeItems = _.filter(table, (item) => {
return item.checked;
});
if (activeItems.length !== 0) {
let id = table[0].id;
sessionStorage.setItem('activeItems', JSON.stringify(activeItems));
$state.go('app.xxx2', {id: id});
}
};

});


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 1
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消