<template>
	<!-- 商品列表 -->
	<view class='goodList'>
		<block v-for="(item,index) in bastList" :key="index">
			<view @click="goDetail(item)" class='item acea-row row-between-wrapper' hover-class="none">
				<view class='pictrue'>
					<image :src='item.image' mode="aspectFill"></image>
					<span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '1'">秒杀</span>
					<span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '2'">砍价</span>
					<span class="pictrue_log pictrue_log_class" v-if="item.activity && item.activity.type === '3'">拼团</span>
					<view class="activityFrame" v-if="item.activity_frame.image" :style="'background-image: url('+item.activity_frame.image+');'"></view>
				</view>
				<view class='underline'>
					<view class='text'>
						<view class="nameCon">
							<view class='line2'>{{item.store_name}}</view>
						</view>
						<!-- #ifdef H5 || APP-PLUS -->
						<slot name="center" :item="item"></slot>
						<!-- #endif -->
						<!-- #ifdef MP -->
						<slot name="center{{index}}"></slot>
						<!-- #endif -->
						<view class='money font-color'>¥<text class='num'>{{item.price}}</text></view>
						<view class='vip-money acea-row row-middle' v-if="item.is_vip && item.vip_price && item.vip_price > 0">¥{{item.vip_price || 0}}
							<image src='../../static/images/vip.png'></image><text class='num'>已售{{item.sales}}{{item.unit_name}}</text>
						</view>
						<view class='vip-money acea-row row-middle' v-else><text class='num'>已售{{item.sales}}{{item.unit_name}}</text></view>
					</view>
				</view>
				<!-- <view class='iconfont icon-gouwuche cart-color acea-row row-center-wrapper'></view> -->
			</view>
		</block>
	</view>
</template>

<script>
	import {mapGetters} from "vuex";
	import { goShopDetail,goPage } from '@/libs/order.js'
	export default {
		computed: mapGetters(['uid']),
		props: {
			status: {
				type: Number,
				default: 0,
			},
			bastList: {
				type: Array,
				default: function() {
					return [];
				}
			}
		},
		data() {
			return {

			};
		},
		methods: {
			goDetail(item){
				goPage().then(res=>{
					goShopDetail(item,this.uid).then(res=>{
						uni.navigateTo({
							url:`/pages/goods_details/index?id=${item.id}`
						})
					})
				})
				
			}
			
		}
	}
</script>

<style scoped lang='scss'>
	.activityFrame{
		border-radius: 20rpx;
	}
	.goodList{
		padding-top: 30rpx;
	}
	.goodList .item {
		position: relative;
		padding-left: 20rpx;
		margin-bottom: 30rpx;
	}

	.goodList .item .pictrue {
		width: 240rpx;
		height: 240rpx;
		position: relative;
	}

	.goodList .item .pictrue image {
		width: 100%;
		height: 100%;
		border-radius: 12rpx;
	}

	.goodList .item .pictrue .numPic {
		position: absolute;
		left: 7rpx;
		top: 7rpx;
		width: 50rpx;
		height: 50rpx;
		border-radius: 50%;
	}

	.goodList .item .underline {
		padding-right: 30rpx;
	}

	.goodList .item:nth-last-child(1) .underline {
		border-bottom: 0;
	}

	.goodList .item .text {
		font-size: 30rpx;
		color: #222;
		width: 440rpx;
		.nameCon{
			height: 136rpx;
		}
	}

	.goodList .item .text .money {
		font-size: 26rpx;
		font-weight: bold;
	}

	.goodList .item .text .money .num {
		font-size: 34rpx;
	}

	.goodList .item .text .vip-money {
		font-size: 24rpx;
		color: #282828;
		font-weight: bold;
		margin-top: 15rpx;
	}

	.goodList .item .text .vip-money image {
		width: 56rpx;
		height: 20rpx;
		margin-right: 8rpx;
		margin-left: 8rpx;
	}

	.goodList .item .text .vip-money .num {
		font-size: 22rpx;
		color: #aaa;
		font-weight: normal;
		margin-top: -2rpx;
		
		~.num {
			margin-left: 22rpx;
		}
	}

	.goodList .item .iconfont {
		position: absolute;
		right: 30rpx;
		width: 50rpx;
		height: 50rpx;
		border-radius: 50%;
		font-size: 30rpx;
		bottom: 38rpx;
	}
</style>