123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- <template>
- <!-- 分类三商品列表 -->
- <view class="goodsList">
- <view class="item acea-row" v-for="(item,index) in tempArr" :key="item.id" @click="goDetail(item)">
- <view class="pictrue">
- <image :src="item.image" mode="aspectFit"></image>
- </view>
- <view class="pictxt acea-row row-column">
- <view class="text line1">{{item.store_name}}</view>
- <view class="acea-row label-wrap">
- <BaseTag v-for="label in item.store_label" :key="label.id" :text="label.label_name" :color="label.color" :borderColor="label.border_color" :background="label.bg_color"
- :circle="!!label.border_color" :imgSrc="label.icon"></BaseTag>
- </view>
- <view class="bottom acea-row row-between-wrapper">
- <BaseMoney :money="item.price" symbolSize="28" integerSize="44" decimalSize="28"></BaseMoney>
- <template v-if="item.stock>0">
- <view class="btn-box"
- v-if="(item.activity && (item.activity.type === '1' || item.activity.type === '2' || item.activity.type === '3')) || item.product_type!=0 || item.custom_form.length || item.is_presale_product">
- <text class="iconfont icon-ic_ShoppingCart1"></text>
- </view>
- <template v-else>
- <!-- 多规格 -->
- <uni-badge v-if="item.spec_type" class="uni-badge-left-margin" :text="item.cart_num" absolute="rightTop">
- <view class="btn-box" @click.stop="goCartDuo(item)">
- <text class="iconfont icon-ic_ShoppingCart1"></text>
- </view>
- </uni-badge>
- <!-- 单规格 -->
- <template v-else>
- <view v-if="item.cart_num" class="cart acea-row">
- <view class="btn acea-row row-center-wrapper" @click.stop="CartNumDes(index,item)">
- <text class="iconfont icon-ic_Reduce"></text>
- </view>
- <view class="num">{{item.cart_num}}</view>
- <view class="btn acea-row row-center-wrapper" @click.stop="CartNumAdd(index,item)">
- <text class="iconfont icon-ic_increase"></text>
- </view>
- </view>
- <view v-else>
- <view v-if="item.cart_button">
- <view class="bnt acea-row row-center-wrapper end" v-if="item.is_presale_product && (item.presale_pay_status == 1 || item.presale_pay_status == 3)">
- {{item.presale_pay_status === 1?'未开始':'已结束'}}
- </view>
- <view class="btn-box acea-row row-center-wrapper" v-else @click.stop="goCartDan(item,index)">
- <text class="iconfont icon-ic_ShoppingCart1"></text>
- </view>
- </view>
- <view v-else class="bnt acea-row row-center-wrapper">立即购买</view>
- </view>
- </template>
- </template>
- </template>
- <view class="bnt acea-row row-center-wrapper end" v-else>已售罄</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: 'd_goodList',
- props: {
- dataConfig: {
- type: Object,
- default: () => {}
- },
- tempArr: {
- type: Array,
- default: () => []
- },
- isLogin: {
- type: Boolean,
- default: false
- }
- },
- data() {
- return {};
- },
- methods: {
- goDetail(item) {
- this.$emit('detail', item);
- },
- goCartDuo(item) {
- this.$emit('gocartduo', item);
- },
- goCartDan(item, index) {
- this.$emit('gocartdan', item, index);
- },
- CartNumDes(index, item) {
- this.$emit('ChangeCartNumDan', false, index, item);
- },
- CartNumAdd(index, item) {
- if (item.is_limit && item.cart_num >= item.limit_num) {
- this.$util.Tips({
- title: "购买最多不能超过" + item.limit_num
- });
- } else {
- this.$emit('ChangeCartNumDan', true, index, item);
- }
- }
- }
- };
- </script>
- <style lang="scss">
- .goodsList {
- padding: 0 30rpx;
- .item {
- flex-wrap: nowrap;
- margin-bottom: 24rpx;
- .pictrue {
- width: 176rpx;
- height: 176rpx;
- position: relative;
- image {
- width: 100%;
- height: 100%;
- border-radius: 16rpx;
- }
- }
- .pictxt {
- flex: 1;
- flex-wrap: nowrap;
- min-width: 0;
- padding-left: 20rpx;
- .text {
- font-size: 28rpx;
- line-height: 40rpx;
- color: #333333;
- }
- .label-wrap {
- flex: 1;
- min-height: 0;
- padding-top: 12rpx;
- }
- .bottom {
- .cart {
- .btn {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- background: var(--view-theme);
- text-align: center;
- line-height: 48rpx;
- .iconfont {
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- .num {
- width: 60rpx;
- height: 48rpx;
- text-align: center;
- font-weight: 500;
- font-size: 30rpx;
- line-height: 48rpx;
- color: #333333;
- }
- }
- .btn-box {
- width: 48rpx;
- height: 48rpx;
- border-radius: 50%;
- background-color: var(--view-theme);
- text-align: center;
- line-height: 48rpx;
- }
- .icon-ic_ShoppingCart1 {
- color: #fff;
- font-size: 30rpx;
- }
- .bnt {
- padding: 0 20rpx;
- height: 45rpx;
- background: var(--view-theme);
- border-radius: 23rpx;
- font-size: 22rpx;
- color: #fff;
- position: relative;
- &.end {
- background: #cccccc;
- }
- .num {
- min-width: 14rpx;
- height: 24rpx;
- text-align: center;
- line-height: 24rpx;
- background-color: #fff;
- color: var(--view-theme);
- border-radius: 15px;
- position: absolute;
- right: -13rpx;
- top: -11rpx;
- font-size: 16rpx;
- padding: 0 5rpx;
- border: 1px solid var(--view-theme);
- }
- }
- }
- }
- }
- }
- </style>
|