123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553 |
- <template>
- <view class="div cart-list-wrapper" :style="'padding-top:'+navHeight+'px'">
- <view class="div cart-list">
- <checkbox-group @change="changeSingleStatu" class="div list" v-for="(item, index) in cartList" :key="index">
- <view class="div list-checkbox">
- <checkbox
- class="checkbox"
- :id="'goods'+index"
- :value="item.pgoods_id"
- :checked="item.checked"
- :disabled="!isCheckedAll && item.pgoods_storage == 0"
- />
- <label class="label" :class="{'checked':item.checked}" :for="'goods'+index"><text class="span iconfont"></text></label>
- </view>
- <view class="div list-item" @click="goDetail(item.pgoods_id)">
- <view class="div item">
- <view class="div ui-image">
- <image mode="aspectFit" class="img" :src="item.pgoods_image" />
- <text v-if="item.pgoods_storage == 0" class="span stock-info"
- >已售罄</text
- >
- <text
- v-if="
- item.pgoods_storage > 0 && item.pgoods_storage <= 10
- "
- class="span stock-info"
- >仅剩{{ item.pgoods_storage }}件</text
- >
- </view>
- <view class="div list-info">
- <view class="div product-header">
- <text
- class="h3 product-title"
- v-bind:class="{ 'disabled-list': item.pgoods_storage == 0 }"
- >
- {{ item.pgoods_name }}
- </text>
- </view>
- <text class="h3 property-info"></text>
- <view class="div info-price">
- <view class="p"
- v-bind:class="{ 'disabled-list': item.pgoods_storage == 0 }"
- >
- {{ item.pgoods_points }}积分
- </view>
- <view class="div ui-number">
- <view
- class="div reduce ui-common"
- @click.stop="reduceNumber(item.pcart_id, item.pgoods_choosenum,index)"
- v-bind:class="{ 'reduce-opacity': item.pgoods_choosenum <= 1 }"
- >
- -
- </view>
- <input
- type="number"
- min="1"
- class="number"
- value="1"
- v-model="item.pgoods_choosenum"
- readonly="true"
- />
- <view
- class="div add ui-common"
- @click.stop="
- addNumber(
- item.pcart_id,
- item.pgoods_choosenum,
- index
- )
- "
- >
- +
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </checkbox-group>
- </view>
- </view>
- </template>
- <script>
- import { urlencode } from '@/util/common'
- import { mapState, mapMutations } from 'vuex'
- import {
- cartGet,
- cartDelete,
- cartUpdate,
- cartQuantity
- } from '../../../../api/memberPointscart'
- export default {
- props: {
- isCheckedAll: {
- type: Boolean,
- default: false
- }
- },
- data () {
- return {
- navHeight:0,
- cartList: [], // 购物车列表
- indicator: { spinnerType: 'fading-circle' },
- totalPrice: 0, // 购物车总价
- cartId: '', // 购物车中选中的商品
- totalAmount: 0, // 购物车数量
- promosIds: [] // 促销信息IDS
- }
- },
- created () {
- this.getCartList(true)
- },
- mounted: function() {
- // #ifdef MP-WEIXIN
- this.navHeight = uni.getMenuButtonBoundingClientRect().top
- // #endif
- },
- methods: {
- ...mapMutations({
- getAmount: 'calculationAmount',
- getPrice: 'calculationPrice',
- setCartNumber: 'setCartNumber',
- saveSelectedCartGoods: 'saveSelectedCartGoods'
- }),
- /*
- * getCartList: 获取购物车列表
- */
- getCartList (value) {
- cartGet().then(res => {
- if (res && res.result.cart_array.length > 0) {
- this.cartList = Object.assign([], res.result.cart_array)
- this.addChecked(value)
- this.renderCart()
- } else {
- this.cartList = []
- this.getAmount(0)
- this.getPrice(0.0)
- }
- uni.$emit('list-is-empty', this.cartList)
- })
- },
- /*
- * addChecked: 为每个商品添加checked 属性
- * @param: isSelectedall 是否选中商品 Boolean
- */
- addChecked (isSelectedall) {
- let list = this.cartList
- for (var i in list) {
- if (list[i].pgoods_storage == 0 && !this.isCheckedAll) {
- list[i].checked = false
- } else {
- list[i].checked = isSelectedall
- }
- }
- this.cartList = Object.assign([], list)
- },
- /*
- * renderCart: 修改商品数量和点击是否选中后 重新计算商品价格和数量
- */
- renderCart () {
- let data = this.cartList
- this.promosIds = []
- let cartGoods = []
- let totalAmount = 0
- let totalPrice = 0
- for (var i in data) {
- if (data[i].checked) {
- totalAmount += parseInt(data[i].pgoods_choosenum)
- totalPrice += parseInt(data[i].pgoods_choosenum) * parseInt(data[i].pgoods_points)
- cartGoods.push(data[i].pcart_id + '|' + data[i].pgoods_choosenum)
- }
- }
- this.cartId = cartGoods.toString()
- this.totalPrice = totalPrice
- this.totalAmount = totalAmount
- uni.$emit('calcu-cart-data', { totalPrice: this.totalPrice, totalAmount: this.totalAmount, cartId: this.cartId })
- },
- /*
- * deleteSelected: 删除购物车数据
- */
- deleteSelected () {
- let data = this.cartList
- let deleteGoods = []
- this.promosIds = []
- for (var i in data) {
- if (data[i].checked) {
- deleteGoods.push(data[i].pcart_id)
- }
- }
- if (deleteGoods.length > 0) {
- deleteGoods = deleteGoods.toString()
- } else {
- uni.showToast({icon:'none',title: '当前没有可删除的商品'})
- return
- }
- uni.showLoading({ title: '加载中' })
- cartDelete(deleteGoods).then(res => {
- if (res) {
- this.getCartList(false)
- uni.hideLoading()
- }
- })
- },
- /*
- * changeSingleStatu: 改变单个商品是否选中的状态, 然后重新获取商品的件数和价格
- */
- changeSingleStatu (e) {
- var value=e.detail.value
- let list = this.cartList
- let length = 0
- let totalLength = 0
- let status = false
- for (var i in list) {
- if (value.indexOf(list[i].pgoods_id)>-1) {
- list[i].checked=true
- length = length + 1
- k++
- }else{
- list[i].checked = false
- }
- }
- uni.$emit('change-footer-status', status)
- if (!this.isCheckedAll) {
- this.renderCart()
- }
- this.cartList = Object.assign([], list)
- },
- /*
- * reduceNumber: 数量减少
- * @param: id 当前减少的购物车id
- * @param: amount 数量
- * @param: i 当前减少的购物车的index
- */
- reduceNumber (id, amount, i) {
- if (amount > 1) {
- amount--
- this.updateCartQuantity(id, amount, i)
- } else {
- uni.showToast({icon:'none',title: {
- message: '受不了了, 宝贝不能再少了'
- }})
- }
- },
- /*
- * addNumber: 数量增加
- * @param: id 当前增加的购物车id
- * @param: amount 数量
- * @param: i 当前增加的购物车组的index
- * @param: index 当前增加的购物车的index
- */
- addNumber (id, amount, i, index) {
- amount++
- this.updateCartQuantity(id, amount, i, index)
- },
- /*
- * updateCartQuantity: 商品数量加减更新数
- * @param: id 当前减少的购物车id
- * @param: amount 数量
- * @param: i 当前购物车的index
- */
- updateCartQuantity (id, amount, i) {
- uni.showLoading({ title: '加载中' })
- cartUpdate(id, amount).then(
- res => {
- if (res) {
- uni.hideLoading()
- this.cartList[i].pgoods_choosenum = amount
- this.renderCart()
- // this.getCartNumber()
- }
- },
- error => {
- uni.showToast({icon:'none',title: error.message})
- uni.hideLoading()
- }
- )
- },
- /*
- * getCartNumber: 获取购物车列表
- */
- getCartNumber () {
- cartQuantity().then(res => {
- if (res) {
- this.setCartNumber(res.quantity)
- }
- })
- },
- /*
- * goDetail: 跳转到详情
- */
- goDetail (id) {
- uni.navigateTo({ url: '/pages/home/pointsgoods/Detail'+'?'+urlencode( { pgoods_id: id } )})
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .cart-list-wrapper {
- overflow-y: auto;
- position: fixed;
- width: 100%;
- bottom: $footerHeight;
- padding-bottom: constant(safe-area-inset-bottom);/*兼容 IOS<11.2*/padding-bottom: env(safe-area-inset-bottom);/*兼容 IOS>11.2*/
- top: $headerHeight;
- margin-bottom:0.5rem;
- .cart-list{margin-bottom:$modelSpace;background:#fff;}
- .store-info{background:#fff;border-bottom:1px solid #e8eaed;display:flex;padding-left:0.6rem;align-content: center;align-items: center;
- .store-name{font-size:$h2;line-height: 2rem;flex:1;}
- }
- .list-checkbox {
- width:1rem;
- height:1rem;
- flex-basis:1rem;
- flex-shrink: 0;
- position: relative;
- margin-right:0.25rem;
- .label {
- padding:0;
- position: absolute;
- left:0;
- top: 0;
- width:1rem;
- height:1rem;
- display: inline-block;
- border-radius:50%;
- border:1px solid #333;
- box-sizing:border-box;
- .iconfont{display: none;line-height:1rem;text-align: center;}
- &.checked{
- border-color:$primaryColor;
- background-color:$primaryColor;
- .iconfont{display: block;color:#fff}
- }
- }
- .checkbox {
- position: relative;
- width:1rem;
- margin: 0;
- opacity: 0;
- background-color: #fff;
- }
- }
- .list {
- background-color: #fff;
- padding:0.6rem;
- display: flex;
- align-content: center;
- align-items: center;
- .list-item {
- display: flex;
- width: 100%;
- flex-direction: column;
- .div.item {
- display: flex;
- width: 100%;
- .div.ui-image {
- flex-shrink: 0;
- width:4.5rem;
- height:4.5rem;
- flex-basis:4.5rem;
- position: relative;
- .img {
- width: 100%;
- height: 100%;
- border-radius: 0.4rem;
- }
- .span.promos {
- position: absolute;
- width:1.8rem;
- height:1rem;
- color: #ffffff;
- font-size:$h6;
- top: 0;
- background-size: cover;
- font-weight: 100;
- line-height: 1rem;
- text-align: left;
- padding-left:0.25rem;
- }
- .span.stock-info {
- position: absolute;
- height:1rem;
- background: rgba(243, 244, 245, 1);
- line-height:1rem;
- text-align: center;
- font-size:$subFontSize;
- color: $primaryColor;
- width: 100%;
- bottom: 0;
- left: 0;
- }
- }
- .div.list-info {
- margin-left:0.5rem;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-content: center;
- justify-content: space-between;
- .product-header {
- display: flex;
- align-items: center;
- .promos-icon {
- width:0.8rem;
- height:0.8rem;
- margin-right:0.2rem;
- }
- .product-title {
- font-size:$subFontSize;
- line-height:1rem;
- height:2rem;
- padding: 0;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- &.disabled-list {
- color: #a4aab3;
- }
- }
- }
- .h3 {
- font-size:$subFontSize;
- color: rgba(78, 84, 93, 1);
- padding: 0;
- margin: 0;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- &.disabled-list {
- color: #a4aab3;
- }
- }
- .h3.property-info {
- font-size:$fontSize;
- color: #7c7f88;
- }
- .div.info-price {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-content: flex-end;
- align-items: flex-end;
- .p {
- font-size:$mainFontSize;
- color: $primaryColor;
- padding: 0;
- margin: 0;
- display: inline-block;
- &.disabled-list {
- color: #a4aab3;
- }
- }
- }
- .div.ui-number {
- height:1.2rem;
- display: flex;
- border-radius: 0.15rem 0 0 0.15rem;
- input,
- .div {
- height:1.2rem;
- text-align: center;
- color: #404245;
- display: inline-block;
- padding: 0;
- margin: 0;
- border: 0;
- outline-offset: 0;
- }
- .ui-common {
- line-height:1.2rem;
- width:1.3rem;
- height:1.2rem;
- border: 1px solid #c7c7cd;
- cursor: pointer;
- }
- .reduce {
- border-right: 0;
- }
- .reduce-opacity {
- opacity: 0.4;
- }
- .add {
- border-left: 0;
- }
- .number {
- width:1.3rem;
- border: 1px solid #c7c7cd;
- border-radius: 0;
- border-image-width: 0;
- box-shadow: 0;
- vertical-align: bottom;
- &:focus {
- outline: none;
- }
- }
- }
- }
- }
- .p.list-promotion-info {
- margin-top:0.6rem;
- padding:0.4rem 0;
- line-height: auto;
- font-size:$h6;
- color: #000;
- background: #f8f8f8;
- width: 100%;
- .span {
- border: 1px solid $primaryColor;
- padding: 1px 0.2rem;
- border-radius:0.1rem;
- font-size:$h6;
- color: $primaryColor;
- margin: 0 0.5rem;
- text-align: center;
- }
- }
- }
- }
- }
- .has-bottom {
- bottom:4.7rem;
- }
- </style>
|