<script setup>
	import {
		ref
	} from 'vue';
	//精选推荐列表
	import JyShopContent from '@/components/public/jy-shop-content';

	const conditions = ref({})
</script>

<template>
	<!-- 精选 -->
	<view class="handpicked df aic jcc mtb40">
		<image class="image" src="/static/handpicked-L.png" />
		<text class="txt f30 mlr40" style="">精选推荐</text>
		<image class="image" src="/static/handpicked-R.png" />
	</view>

	<!-- 精选推荐列表 -->
	<JyShopContent :conditions="conditions" :isLoadMore="false" />
</template>

<style lang="scss" scoped>
	// 
	.handpicked {
		.txt {
			color: #FF9B27
		}

		.image {
			width: 32rpx;
			height: 6rpx;
		}
	}
</style>