123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <template>
- <view>
- <!-- 分类购物车下拉列表 -->
- <view :style="[parent.isFooter?listH:'']" class="cartList" :class="{on:cartData.iScart,ons:!isFooter}" @touchmove.stop.prevent="moveHandle">
- <view class="title acea-row row-between-wrapper">
- <view class="name">购物车 <text class="fs-24 text--w111-999 pl-8">(共{{cartNums||cartNum}}件商品)</text></view>
- <view class="del acea-row row-middle" @click="subDel"><view class="iconfont icon-ic_delete"></view>清空</view>
- </view>
- <view class="list">
- <!-- <scroll-view scroll-y="true" style="max-height: 800rpx;margin-bottom: 146rpx;"> -->
- <scroll-view scroll-y="true" :style="{
- 'max-height': '800rpx',
- 'margin-bottom': 146+marginBottom+'rpx'
- }">
- <view class="item flex" v-for="(item,index) in cartData.cartList" :key="index">
- <view class="pictrue">
- <image v-if="item.productInfo.attrInfo" :src='item.productInfo.attrInfo.image'></image>
- <image v-else :src='item.productInfo.image'></image>
- <view class="mantle" v-if="!item.status || !item.attrStatus"></view>
- </view>
- <view class="flex-1 flex-col justify-between ml-20">
- <view class="w-full">
- <view class="lh-40rpx fs-28 text--w111-333 line2"
- :class="(item.attrStatus && item.status)?'':'on'">{{item.productInfo.store_name}}</view>
- <view class="inline-block max-w-460 h-38 lh-38rpx mt-12 bg--w111-f5f5f5 text--w111-999 rd-20rpx px-12 text-center fs-22"
- v-if="item.productInfo.spec_type && item.attrStatus">
- <view class="flex">
- <text class="line1">属性: {{item.productInfo.attrInfo.suk}}</text>
- <text class="iconfont icon-ic_downarrow fs-24 ml-12"></text>
- </view>
- </view>
- <view class="inline-block max-w-460 h-38 lh-38rpx mt-12 bg--w111-f5f5f5 text--w111-999 rd-20rpx px-12 text-center fs-22"
- v-else>
- <view class="flex">
- <text class="line1">属性: {{item.productInfo.attrInfo.suk}}</text>
- <text class="iconfont icon-ic_downarrow fs-24 ml-12"></text>
- </view>
- </view>
- </view>
- <view class="flex-between-center mt-20">
- <baseMoney :money="item.truePrice" symbolSize="24" integerSize="40" decimalSize="24" weight></baseMoney>
- <view class="flex-y-center" v-if="item.attrStatus && item.status">
- <view class="flex-center w-48 h-48 rd-30rpx bg--w111-f5f5f5 text--w111-333" @click="leaveCart(index)">
- <text class="iconfont icon-ic_Reduce fs-32"></text>
- </view>
- <view class="fs-30 text--w111-333 px-20">{{item.cart_num}}</view>
- <view class="flex-center w-48 h-48 rd-30rpx bg-color text--w111-fff" @click="joinCart(index)">
- <text class="iconfont icon-ic_increase fs-32"></text>
- </view>
- </view>
- <view class="noBnt" v-else-if="!item.attrStatus">已售罄</view>
- <view class="noBnt" v-else-if="!item.status">已下架</view>
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- <view class="mask" v-if="cartData.iScart" @click="closeList" @touchmove.stop.prevent="moveHandle"></view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from 'vuex';
- export default {
- props:{
- cartData: {
- type: Object,
- default: () => {}
- },
- isFooter: {
- type: Boolean,
- default: false
- },
- marginBottom: {
- type: Number,
- default: 0
- },
- cartNums: {
- type: Number,
- default: 0
- },
- },
- inject: ['parent'],
- computed:{
- listH(){
- let H = `calc(${this.parent.pdHeight*2+100}rpx + env(safe-area-inset-bottom))`
- return{
- paddingBottom: H
- }
- },
- ...mapState({
- cartNum: state => state.indexData.cartNum
- })
- },
- data() {
- return {};
- },
- mounted(){
- },
- methods: {
- moveHandle(){
- return false
- },
- closeList(){
- this.$emit('closeList', false);
- },
- leaveCart(index){
- this.$emit('ChangeCartNumDan', false,index);
- },
- joinCart(index){
- this.$emit('ChangeCartNumDan', true,index);
- },
- subDel(){
- this.$emit('ChangeSubDel');
- },
- oneDel(id,index){
- this.$emit('ChangeOneDel',id,index);
- }
- }
- }
- </script>
- <style lang="scss">
- .mask{
- z-index: 99;
- }
- .cartList{
- position: fixed;
- left:0;
- bottom: 0;
- width: 100%;
- background-color: #fff;
- z-index:100;
- padding: 40rpx 32rpx 0;
- padding-bottom: calc(100rpx + constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- padding-bottom: calc(100rpx + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- box-sizing: border-box;
- border-radius:40rpx 40rpx 0 0;
- transform: translate3d(0, 100%, 0);
- transition: all .3s cubic-bezier(.25, .5, .5, .9);
- &.on{
- transform: translate3d(0, 0, 0);
- }
- &.ons{
- // #ifndef H5
- padding-bottom: 0;
- padding-bottom: calc(0 + constant(safe-area-inset-bottom)); ///兼容 IOS<11.2/
- padding-bottom: calc(0 + env(safe-area-inset-bottom)); ///兼容 IOS>11.2/
- // #endif
- }
- .title{
- margin-bottom: 32rpx;
- .name{
- font-size:32rpx;
- color: #333;
- font-weight:500;
- }
- .del{
- font-size: 24rpx;
- color: #666;
- .iconfont{
- margin-right: 8rpx;
- font-size: 28rpx;
- }
- }
- }
- .list{
- max-height: 1000rpx;
- .item{
- margin-bottom: 32rpx;
- .pictrue{
- width: 200rpx;
- height: 200rpx;
- border-radius: 16rpx;
- position: relative;
- image{
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- .mantle{
- position: absolute;
- top:0;
- left:0;
- width: 100%;
- height: 100%;
- background:rgba(255,255,255,0.65);
- border-radius:16rpx;
- }
- }
- }
- }
- }
- .noBnt{
- width:126rpx;
- height:44rpx;
- background:#f5f5f5;
- border-radius:22rpx;
- text-align: center;
- line-height: 44rpx;
- font-size: 24rpx;
- color: #333;
- }
- .max-w-460{
- max-width: 460rpx;;
- }
- </style>
|