Files

45 lines
909 B
Vue
Raw Normal View History

2023-11-14 17:21:03 +08:00
<!--
@name: 新品首发
@author: kahu4
@date: 2023-10-27 14:42
@descriptionindex
@update: 2023-10-27 14:42
-->
<script setup>
2023-11-15 19:59:37 +08:00
import Recommend from "@/components/Recommend/index.vue";
import UvIcon from "@/uni_modules/uv-icon/components/uv-icon/uv-icon.vue";
2023-11-14 17:21:03 +08:00
</script>
<template>
2023-11-15 19:59:37 +08:00
<Recommend ref="recommendRef" :more="false">
<template #head>
<view class="head flex flex-ai__center flex-jc__sb">
<view class="left">
商品推荐
</view>
<view class="right flex flex-ai__center flex-jc__end">
查看更多
<uv-icon name="arrow-right" color="#999" size="14" />
</view>
</view>
</template>
</Recommend>
2023-11-14 17:21:03 +08:00
</template>
<style
scoped
lang="scss"
>
2023-11-15 19:59:37 +08:00
.head{
margin-top: 20rpx;
.left{
font-size: 32rpx;
color: #333333;
}
.right{
font-size: 24rpx;
color: #999999;
2023-11-14 17:21:03 +08:00
}
}
</style>