26 lines
746 B
Vue
26 lines
746 B
Vue
<template>
|
|
<!-- 精选 -->
|
|
<view class="handpicked df aic jcc mtb40">
|
|
<image :src="handpickedL" />
|
|
<text class="f30 mlr40" style="color: #FF9B27">精选推荐</text>
|
|
<image :src="handpickedR" />
|
|
</view>
|
|
<!-- 精选推荐列表 -->
|
|
<JyShopContent :conditions="conditions" :isLoadMore="false"></JyShopContent>
|
|
</template>
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
//精选推荐列表
|
|
import JyShopContent from '@/components/public/jy-shop-content';
|
|
import handpickedL from '@/static/handpicked-L.png'
|
|
import handpickedR from '@/static/handpicked-R.png'
|
|
const conditions = ref({})
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.handpicked {
|
|
image {
|
|
width: 32rpx;
|
|
height: 6rpx;
|
|
}
|
|
}
|
|
</style> |