123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211 |
- <template>
- <view class="hot-wrap">
- <view class="hot-content" :class="{'hot-border': isGardeItem}">
- <view class="hot-title">
- <view class="title-l" v-show="!isGardeItem">
- 好味<text class="title-color">热卖</text>
- </view>
- <view class="title-l" v-show="isGardeItem">
- 果园热卖
- </view>
- <view class="title-btn">
- 限时抢购中<up-icon size="10" name="arrow-right"></up-icon>
- </view>
- </view>
- <view class="hot-list">
- <up-scroll-list indicatorColor="#FF770033" indicatorActiveColor="#FF7700" :indicatorWidth="30"
- :indicatorBarWidth="13">
- <view class="hot-panel">
- <view class="hot-item">
- <image class="hot-img" :src="`${config.BASIC_IMG}home/hot-1.png`" mode=""></image>
- <view class="item-info">
- <view class="info-text">
- <!-- <up-text :lines="2" color="#000000" size="12" text="海南妃子笑新鲜顺丰发货海南妃子笑海南妃子笑"></up-text> -->
- <view class="ellipsis-l2">
- 海南妃子笑新鲜顺丰发货海南妃子笑海南妃子笑
- </view>
- </view>
- <view class="info-price">
- <view class="price-text">
- <text class="price-unit">¥</text>108
- </view>
- <view class="info-sold">
- 已售1251
- </view>
- </view>
- </view>
- </view>
- <view class="hot-item">
- <image class="hot-img" :src="`${config.BASIC_IMG}home/hot-2.png`" mode=""></image>
- <view class="item-info">
- <view class="info-text">
- <view class="ellipsis-l2">
- 海南妃子笑新鲜顺丰发货海南妃子笑海南妃子笑
- </view>
- </view>
- <view class="info-price">
- <view class="price-text">
- <text class="price-unit">¥</text>108
- </view>
- <view class="info-sold">
- 已售1251
- </view>
- </view>
- </view>
- </view>
- <view class="hot-item">
- <image class="hot-img" :src="`${config.BASIC_IMG}home/hot-1.png`" mode=""></image>
- <view class="item-info">
- <view class="info-text">
- <view class="ellipsis-l2">
- 海南妃子笑新鲜顺丰发货海南妃子笑海南妃子笑新鲜顺丰发货
- </view>
- </view>
- <view class="info-price">
- <view class="price-text">
- <text class="price-unit">¥</text>108
- </view>
- <view class="info-sold">
- 已售1251
- </view>
- </view>
- </view>
- </view>
- <view class="hot-item">
- <image class="hot-img" :src="`${config.BASIC_IMG}home/hot-2.png`" mode=""></image>
- <view class="item-info">
- <view class="info-text">
- <view class="ellipsis-l2">
- 海南妃子笑新鲜顺丰发货海南妃子笑海南妃子笑新鲜顺丰发货
- </view>
- </view>
- <view class="info-price">
- <view class="price-text">
- <text class="price-unit">¥</text>108
- </view>
- <view class="info-sold">
- 已售1251
- </view>
- </view>
- </view>
- </view>
- </view>
- </up-scroll-list>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import config from "@/api/config.js"
- const props = defineProps({
- isGardeItem: {
- type: Boolean,
- default: false
- }
- })
- </script>
- <style lang="scss" scoped>
- .hot-title {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 20rpx;
- .title-l {
- font-family: 'PangMenZhengDao';
- font-size: 32rpx;
- .title-color {
- color: #F3C11D;
- }
- }
- .title-btn {
- color: rgba(0, 0, 0, 0.6);
- font-size: 24rpx;
- display: inline-flex;
- align-items: center;
- }
- }
- .hot-wrap {
- background: linear-gradient(#FFFFFF, rgba(255, 255, 255, 0));
- padding: 2rpx;
- border-radius: 16rpx;
- .hot-content {
- background: linear-gradient(#fff1c3 4%, #FFFFFF 28%);
- border-radius: 16rpx;
- padding: 20rpx;
- height: 240rpx;
- box-sizing: border-box;
- &.hot-border {
- background: none;
- border: 2rpx solid #F3F3F3;
- }
- .hot-list {
- .hot-panel {
- width: 100%;
- display: flex;
- .hot-item {
- width: calc(50% - 10rpx);
- display: flex;
- white-space: nowrap;
- .hot-img {
- flex: none;
- width: 116rpx;
- height: 116rpx;
- object-fit: cover;
- border-radius: 10rpx;
- }
- .item-info {
- padding-left: 10rpx;
- width: 200rpx;
- .info-text {
- color: #000000;
- font-size: 24rpx;
- }
- .info-price {
- display: flex;
- align-items: baseline;
- justify-content: space-between;
- .price-text {
- color: #FF7700;
- font-size: 32rpx;
- .price-unit {
- font-size: 20rpx;
- }
- }
- .info-sold {
- font-size: 20rpx;
- color: #C4C4C4;
- }
- }
- }
- }
- .hot-item+.hot-item {
- margin-left: 20rpx;
- }
- }
-
- ::v-deep {
- .u-scroll-list__indicator {
- margin-top: 20rpx;
- }
- }
- }
- }
- }
- </style>
|