123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668 |
- <template>
- <view class="container">
- <view class="service-policy">
- <view class="item">30天无忧退货</view>
- <view class="item">48小时快速退款</view>
- <view class="item">满88元免邮费</view>
- </view>
- <view class="no-cart" v-if="cartGoods.length <= 0">
- <view class="c">
- <view class="title-box">
- 购物车空空如也~
- </view>
- <view class="to-index-btn" @tap="toIndexPage">
- 去逛逛
- </view>
- </view>
- </view>
- <view class="cart-view" v-if="cartGoods.length > 0">
- <view class="list">
- <view class="group-item">
- <view class="goods">
- <view :class="'item ' + (isEditCart ? 'edit' : '')" v-for="(item, index) in cartGoods" :key="item.id">
- <view :class="'checkbox ' + (item.checked ? 'checked' : '')" @tap="checkedItem" :data-item-index="index"></view>
- <view class="cart-goods">
- <image class="img" :src="item.list_pic_url"></image>
- <view class="info">
- <view class="t">
- <text class="name">{{item.goods_name}}</text>
- <text class="num">x{{item.number}}</text>
- </view>
- <view class="attr">{{ isEditCart ? '已选择:' : ''}}{{item.goods_specifition_name_value||''}}</view>
- <view class="b">
- <text class="price">¥{{item.retail_price}}</text>
- <view class="selnum">
- <view class="cut" @tap="cutNumber" :data-item-index="index">-</view>
- <input :value="item.number" class="number" :disabled="true" type="number" />
- <view class="add" @tap="addNumber" :data-item-index="index">+</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="cart-bottom">
- <view :class="'checkbox ' + (checkedAllStatus ? 'checked' : '')" @tap="checkedAll">全选({{cartTotal.checkedGoodsCount}})</view>
- <view class="total">{{!isEditCart ? '¥'+cartTotal.checkedGoodsAmount : ''}}</view>
- <view class="delete" @tap="editCart">{{!isEditCart ? '编辑' : '完成'}}</view>
- <view class="checkout" @tap="deleteCart" v-if="isEditCart">删除所选</view>
- <view class="checkout" @tap="checkoutOrder" v-if="!isEditCart">下单</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const util = require("@/utils/util.js")
- const api = require('@/utils/api.js');
- export default {
- data() {
- return {
- cartGoods: [],
- cartTotal: {
- "goodsCount": 0,
- "goodsAmount": 0.00,
- "checkedGoodsCount": 0,
- "checkedGoodsAmount": 0.00
- },
- isEditCart: false,
- checkedAllStatus: true,
- editCartList: []
- }
- },
- methods: {
- getCartList: function() {
- let that = this;
- util.request(api.CartList).then(function(res) {
- if (res.errno === 0) {
- that.cartGoods = res.data.cartList
- that.cartTotal = res.data.cartTotal
- }
- that.checkedAllStatus = that.isCheckedAll()
- });
- },
- isCheckedAll: function() {
- //判断购物车商品已全选
- return this.cartGoods.every(function(element, index, array) {
- if (element.checked == true) {
- return true;
- } else {
- return false;
- }
- });
- },
- checkedItem: function(event) {
- let itemIndex = event.target.dataset.itemIndex;
- let that = this;
- if (!that.isEditCart) {
- util.request(api.CartChecked, {
- productIds: that.cartGoods[itemIndex].product_id,
- isChecked: that.cartGoods[itemIndex].checked ? 0 : 1
- }, "POST", "application/json").then(function(res) {
- if (res.errno === 0) {
- that.cartGoods = res.data.cartList
- that.cartTotal = res.data.cartTotal
- }
- that.checkedAllStatus = that.isCheckedAll()
- });
- } else {
- //编辑状态
- let tmpCartData = that.cartGoods.map(function(element, index, array) {
- if (index == itemIndex) {
- element.checked = !element.checked;
- }
- return element;
- });
- that.cartGoods = tmpCartData
- that.cartTotal.checkedGoodsCount = that.getCheckedGoodsCount()
- that.checkedAllStatus = that.isCheckedAll()
- }
- },
- getCheckedGoodsCount: function() {
- let checkedGoodsCount = 0;
- this.cartGoods.forEach(function(v) {
- if (v.checked === true) {
- checkedGoodsCount += v.number;
- }
- });
- return checkedGoodsCount;
- },
- checkedAll: function() {
- let that = this;
- if (!that.isEditCart) {
- var productIds = that.cartGoods.map(function(v) {
- return v.product_id;
- });
- util.request(api.CartChecked, {
- productIds: productIds.join(','),
- isChecked: that.isCheckedAll() ? 0 : 1
- }, "POST", "application/json").then(function(res) {
- if (res.errno === 0) {
- that.cartGoods = res.data.cartList
- that.cartTotal = res.data.cartTotal
- }
- that.checkedAllStatus = that.isCheckedAll()
- });
- } else {
- //编辑状态
- let checkedAllStatus = that.isCheckedAll();
- let tmpCartData = that.cartGoods.map(function(v) {
- v.checked = !checkedAllStatus;
- return v;
- });
- that.cartGoods = tmpCartData
- that.cartTotal.checkedGoodsCount = that.getCheckedGoodsCount()
- that.checkedAllStatus = that.isCheckedAll()
- }
- },
- editCart: function() {
- var that = this;
- if (that.isEditCart) {
- that.getCartList();
- that.isEditCart = !that.isEditCart
- } else {
- //编辑状态
- let tmpCartList = that.cartGoods.map(function(v) {
- v.checked = false;
- return v;
- });
- that.editCartList = that.cartGoods
- that.isEditCart = !that.isEditCart
- that.cartGoods = tmpCartList
- that.cartTotal.checkedGoodsCount = that.getCheckedGoodsCount()
- that.checkedAllStatus = that.isCheckedAll()
- }
- },
- toIndexPage: function() {
- uni.switchTab({
- url: "/pages/index/index"
- });
- },
- updateCart: function(productId, goodsId, number, id) {
- let that = this;
- util.request(api.CartUpdate, {
- productId: productId,
- goodsId: goodsId,
- number: number,
- id: id
- }).then(function(res) {
- that.checkedAllStatus = that.isCheckedAll()
- });
- },
- cutNumber: function(event) {
- let itemIndex = event.target.dataset.itemIndex;
- let cartItem = this.cartGoods[itemIndex];
- let number = (cartItem.number - 1 > 1) ? cartItem.number - 1 : 1;
- cartItem.number = number;
- this.cartGoods = this.cartGoods
- this.updateCart(cartItem.product_id, cartItem.goods_id, number, cartItem.id);
- },
- addNumber: function(event) {
- let itemIndex = event.target.dataset.itemIndex;
- let cartItem = this.cartGoods[itemIndex];
- let number = cartItem.number + 1;
- cartItem.number = number;
- this.cartGoods = this.cartGoods
- this.updateCart(cartItem.product_id, cartItem.goods_id, number, cartItem.id);
- },
- checkoutOrder: function() {
- //获取已选择的商品
- let that = this;
- var checkedGoods = that.cartGoods.filter(function(element, index, array) {
- if (element.checked == true) {
- return true;
- } else {
- return false;
- }
- });
- if (checkedGoods.length <= 0) {
- return false;
- }
- uni.navigateTo({
- url: '../shopping/checkout/checkout'
- })
- },
- deleteCart: function() {
- //获取已选择的商品
- let that = this;
- let productIds = that.cartGoods.filter(function(element, index, array) {
- if (element.checked == true) {
- return true;
- } else {
- return false;
- }
- });
- if (productIds.length <= 0) {
- return false;
- }
- productIds = productIds.map(function(element, index, array) {
- if (element.checked == true) {
- return element.product_id;
- }
- });
- util.request(api.CartDelete, {
- productIds: productIds.join(',')
- }, 'POST', 'application/json').then(function(res) {
- if (res.errno === 0) {
- let cartList = res.data.cartList.map(v => {
- v.checked = false;
- return v;
- });
- that.cartGoods = cartList
- that.cartTotal = res.data.cartTotal
- }
- that.checkedAllStatus = that.isCheckedAll()
- });
- }
- },
- onShow: function() {
- // 页面显示
- this.getCartList();
- },
- onLoad: function() {}
- }
- </script>
- <style lang="scss">
- page {
- height: 100%;
- min-height: 100%;
- background: #f4f4f4;
- }
- .container {
- background: #f4f4f4;
- width: 100%;
- height: auto;
- min-height: 100%;
- overflow: hidden;
- }
- .service-policy {
- width: 750rpx;
- height: 73rpx;
- background: #f4f4f4;
- padding: 0 31.25rpx;
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- justify-content: space-between;
- }
- .service-policy .item {
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/servicePolicyRed-518d32d74b.png) 0 center no-repeat;
- background-size: 10rpx;
- padding-left: 15rpx;
- display: flex;
- align-items: center;
- font-size: 25rpx;
- color: #666;
- }
- .no-cart {
- width: 100%;
- height: auto;
- margin: 0 auto;
- }
- .no-cart .c {
- width: 100%;
- height: auto;
- margin-top: 200rpx;
- }
- .no-cart .c image {
- margin: 0 auto;
- display: block;
- text-align: center;
- width: 258rpx;
- height: 258rpx;
- }
- .no-cart .c text {
- margin: 0 auto;
- display: block;
- width: 258rpx;
- height: 29rpx;
- line-height: 29rpx;
- text-align: center;
- font-size: 29rpx;
- color: #999;
- }
- .title-box {
- width: 100%;
- padding-top: 330rpx;
- text-align: center;
- font-size: 28rpx;
- color: #999;
- background: url(https://platform-wxmall.oss-cn-beijing.aliyuncs.com/upload/20180727/15015039793f4e.png) no-repeat center 205rpx;
- background-size: 100rpx auto;
- margin-bottom: 50rpx;
- }
- .to-index-btn {
- color: #fff;
- background: #e64340;
- border-radius: 6px;
- width: 300rpx;
- height: auto;
- line-height: 70rpx;
- text-align: center;
- font-size: 28rpx;
- margin: 0 auto;
- display: block;
- }
- .cart-view {
- width: 100%;
- height: auto;
- overflow: hidden;
- }
- .cart-view .list {
- height: auto;
- width: 100%;
- overflow: hidden;
- margin-bottom: 120rpx;
- }
- .cart-view .group-item {
- height: auto;
- width: 100%;
- background: #fff;
- margin-bottom: 18rpx;
- }
- .cart-view .item {
- height: 164rpx;
- width: 100%;
- overflow: hidden;
- }
- .cart-view .item .checkbox {
- float: left;
- height: 34rpx;
- width: 34rpx;
- margin: 65rpx 18rpx 65rpx 26rpx;
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/checkbox-0e09baa37e.png) no-repeat;
- background-size: 34rpx;
- }
- .cart-view .item .checkbox.checked {
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/checkbox-checked-822e54472a.png) no-repeat;
- background-size: 34rpx;
- }
- .cart-view .item .cart-goods {
- float: right;
- height: 164rpx;
- width: 672rpx;
- border-bottom: 1px solid #f4f4f4;
- }
- .cart-view .item .img {
- float: left;
- height: 125rpx;
- width: 125rpx;
- background: #f4f4f4;
- margin: 19.5rpx 18rpx 19.5rpx 0;
- }
- .cart-view .item .info {
- float: left;
- height: 125rpx;
- width: 503rpx;
- margin: 19.5rpx 26rpx 19.5rpx 0;
- }
- .cart-view .item .t {
- margin: 8rpx 0;
- height: 28rpx;
- font-size: 25rpx;
- color: #333;
- overflow: hidden;
- }
- .cart-view .item .name {
- height: 28rpx;
- max-width: 310rpx;
- line-height: 28rpx;
- font-size: 25rpx;
- color: #333;
- overflow: hidden;
- }
- .cart-view .item .num {
- height: 28rpx;
- line-height: 28rpx;
- float: right;
- }
- .cart-view .item .attr {
- margin-bottom: 17rpx;
- height: 24rpx;
- line-height: 24rpx;
- font-size: 22rpx;
- color: #666;
- overflow: hidden;
- }
- .cart-view .item .b {
- height: 28rpx;
- line-height: 28rpx;
- font-size: 25rpx;
- color: #333;
- overflow: hidden;
- }
- .cart-view .item .price {
- float: left;
- }
- .cart-view .item .open {
- height: 28rpx;
- width: 150rpx;
- display: block;
- float: right;
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/arrowDown-d48093db25.png) right center no-repeat;
- background-size: 25rpx;
- font-size: 25rpx;
- color: #333;
- }
- .cart-view .item.edit .t {
- display: none;
- }
- .cart-view .item.edit .attr {
- text-align: right;
- background: url(http://yanxuan.nosdn.127.net/hxm/yanxuan-wap/p/20161201/style/img/icon-normal/arrow-right1-e9828c5b35.png) right center no-repeat;
- padding-right: 25rpx;
- background-size: 12rpx 20rpx;
- margin-bottom: 24rpx;
- height: 39rpx;
- line-height: 39rpx;
- font-size: 24rpx;
- color: #999;
- overflow: hidden;
- }
- .cart-view .item.edit .b {
- display: flex;
- height: 52rpx;
- overflow: hidden;
- }
- .cart-view .item.edit .price {
- line-height: 52rpx;
- height: 52rpx;
- flex: 1;
- }
- .cart-view .item .selnum {
- display: none;
- }
- .cart-view .item.edit .selnum {
- width: 235rpx;
- height: 52rpx;
- border: 1rpx solid #ccc;
- display: flex;
- }
- .selnum .cut {
- width: 70rpx;
- height: 100%;
- text-align: center;
- line-height: 50rpx;
- }
- .selnum .number {
- flex: 1;
- height: 100%;
- text-align: center;
- line-height: 68.75rpx;
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
- float: left;
- }
- .selnum .add {
- width: 80rpx;
- height: 100%;
- text-align: center;
- line-height: 50rpx;
- }
- .cart-view .group-item .header {
- width: 100%;
- height: 94rpx;
- line-height: 94rpx;
- padding: 0 26rpx;
- border-bottom: 1px solid #f4f4f4;
- }
- .cart-view .promotion .icon {
- display: inline-block;
- height: 24rpx;
- width: 15rpx;
- }
- .cart-view .promotion {
- margin-top: 25.5rpx;
- float: left;
- height: 43rpx;
- width: 480rpx;
- /*margin-right: 84rpx;*/
- line-height: 43rpx;
- font-size: 0;
- }
- .cart-view .promotion .tag {
- border: 1px solid #f48f18;
- height: 37rpx;
- line-height: 31rpx;
- padding: 0 9rpx;
- margin-right: 10rpx;
- color: #f48f18;
- font-size: 24.5rpx;
- }
- .cart-view .promotion .txt {
- height: 43rpx;
- line-height: 43rpx;
- padding-right: 10rpx;
- color: #333;
- font-size: 29rpx;
- overflow: hidden;
- }
- .cart-view .get {
- margin-top: 18rpx;
- float: right;
- height: 58rpx;
- padding-left: 14rpx;
- border-left: 1px solid #d9d9d9;
- line-height: 58rpx;
- font-size: 29rpx;
- color: #333;
- }
- .cart-bottom {
- position: fixed;
- bottom: 0;
- left: 0;
- height: 100rpx;
- width: 100%;
- background: #fff;
- display: flex;
- }
- .cart-bottom .checkbox {
- height: 34rpx;
- padding-left: 60rpx;
- line-height: 34rpx;
- margin: 33rpx 18rpx 33rpx 26rpx;
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/checkbox-0e09baa37e.png) no-repeat;
- background-size: 34rpx;
- font-size: 29rpx;
- }
- .cart-bottom .checkbox.checked {
- background: url(http://nos.netease.com/mailpub/hxm/yanxuan-wap/p/20150730/style/img/icon-normal/checkbox-checked-822e54472a.png) no-repeat;
- background-size: 34rpx;
- }
- .cart-bottom .total {
- height: 34rpx;
- flex: 1;
- margin: 33rpx 10rpx;
- font-size: 29rpx;
- }
- .cart-bottom .delete {
- height: 34rpx;
- width: auto;
- margin: 33rpx 18rpx;
- font-size: 29rpx;
- }
- .cart-bottom .checkout {
- height: 100rpx;
- width: 210rpx;
- text-align: center;
- line-height: 100rpx;
- font-size: 29rpx;
- background: #b4282d;
- color: #fff;
- }
- </style>
|