210 lines
4.7 KiB
Vue
210 lines
4.7 KiB
Vue
<template>
|
|
<view>
|
|
<view class="cartList" :class="cartData.iScart?'on':''">
|
|
<view class="title acea-row row-between-wrapper">
|
|
<view class="name">已选商品</view>
|
|
<view class="del acea-row row-middle" @click="subDel"><view class="iconfont icon-shanchu1"></view>清空</view>
|
|
</view>
|
|
<view class="list">
|
|
<view class="item acea-row row-between-wrapper" v-for="(item,index) in cartData.cartList" :key="index">
|
|
<view class="pictrue">
|
|
<image :src='item.image'></image>
|
|
<!-- <view class="mantle" v-if="!item.status || !item.attrStatus"></view> -->
|
|
</view>
|
|
<view class="txtPic">
|
|
<view class="name line2" :class="item.attrStatus ?'':'on'">{{item.storeName}}</view>
|
|
<view v-if="item.attrStatus">
|
|
<view class="info" >{{item.suk}}</view>
|
|
<view class="bottom acea-row row-between-wrapper">
|
|
<view class="money">¥<text class="num">{{item.vipPrice ? item.vipPrice :item.price}}</text></view>
|
|
<view class="cartNum acea-row row-middle">
|
|
<view class="reduce iconfont icon-jianhao1" @click="leaveCart(index)"></view>
|
|
<view class="num">{{item.cartNum}}</view>
|
|
<view :class="item.cartNum >= item.stock?'on':''" class="plus iconfont icon-jiahao1" @click="joinCart(index)"></view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="noBnt" v-else-if="item.stock == 0">已售罄</view>
|
|
<!-- <view class="delTxt acea-row row-right" v-if="!item.status || !item.attrStatus"><text @click="oneDel(item.id,index)">删除</text></view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="mask" v-if="cartData.iScart" @click="closeList"></view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props:{
|
|
cartData: {
|
|
type: Object,
|
|
default: () => {}
|
|
}
|
|
},
|
|
data() {
|
|
return {};
|
|
},
|
|
mounted(){
|
|
},
|
|
methods: {
|
|
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" scoped>
|
|
.on {
|
|
color: #DEDEDE !important;
|
|
}
|
|
.mask{
|
|
z-index: 99;
|
|
}
|
|
.cartList{
|
|
position: fixed;
|
|
left:0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: #fff;
|
|
z-index:100;
|
|
padding: 0 30rpx 100rpx 30rpx;
|
|
box-sizing: border-box;
|
|
border-radius:16rpx 16rpx 0 0;
|
|
transform: translate3d(0, 100%, 0);
|
|
transition: all .3s cubic-bezier(.25, .5, .5, .9);
|
|
&.on{
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
.title{
|
|
height: 108rpx;
|
|
.name{
|
|
font-size:28rpx;
|
|
color: #282828;
|
|
font-weight:bold;
|
|
}
|
|
.del{
|
|
font-size: 26rpx;
|
|
@include main_color(theme);
|
|
.iconfont{
|
|
margin-right: 5rpx;
|
|
font-size: 34rpx;
|
|
}
|
|
}
|
|
}
|
|
.list{
|
|
max-height: 720rpx;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
.item{
|
|
margin-bottom: 40rpx;
|
|
.pictrue{
|
|
width: 176rpx;
|
|
height: 176rpx;
|
|
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;
|
|
}
|
|
}
|
|
.txtPic{
|
|
width: 486rpx;
|
|
.name{
|
|
font-size:28rpx;
|
|
color: #282828;
|
|
&.on{
|
|
color: #A3A3A3;
|
|
}
|
|
}
|
|
.noBnt{
|
|
width:126rpx;
|
|
height:44rpx;
|
|
background:rgba(242,242,242,1);
|
|
border-radius:22rpx;
|
|
text-align: center;
|
|
line-height: 44rpx;
|
|
font-size: 24rpx;
|
|
color: #A3A3A3;
|
|
margin-top: 10rpx;
|
|
}
|
|
.delTxt{
|
|
margin-top: 48rpx;
|
|
font-size: 24rpx;
|
|
color: #E93323;
|
|
text{
|
|
width: 70rpx;
|
|
height: 50rpx;
|
|
text-align: center;
|
|
line-height: 50rpx;
|
|
}
|
|
}
|
|
.info{
|
|
font-size: 23rpx;
|
|
color: #989898;
|
|
margin-top: 5rpx;
|
|
}
|
|
.bottom{
|
|
margin-top: 11rpx;
|
|
.money{
|
|
font-weight:bold;
|
|
font-size: 26rpx;
|
|
@include price_color(theme);
|
|
.num{
|
|
font-size: 34rpx;
|
|
}
|
|
}
|
|
.cartNum{
|
|
font-weight:bold;
|
|
.num{
|
|
font-size: 34rpx;
|
|
color: #282828;
|
|
width: 120rpx;
|
|
text-align: center;
|
|
}
|
|
.reduce{
|
|
color: #282828;
|
|
font-size: 24rpx;
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
text-align: center;
|
|
line-height: 60rpx;
|
|
}
|
|
.plus{
|
|
color: #282828;
|
|
font-size: 24rpx;
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
text-align: center;
|
|
line-height: 60rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |