123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <template>
- <div class="item" :class="{'float-item': float}" style="cursor: pointer;position: relative;" @click="goPage('/product-detail/'+productSummary.skuGroupId)">
- <v-lazy-image class="logo" :src="productSummary.imageUrl" src-placeholder="https://photoprism.hichinatravel.com/api/v1/t/2bfc32550ae040956f7e861566d26c487c0143e7/32mcf2k4/tile_224" alt="" />
- <div class="overlay" v-if="showIcon">
- <el-icon size="24">
- <svg-icon icon-class="money" color="#FFF033"/>
- </el-icon>
- </div>
- <div class="item-content">
- <p class="time">Start from ¥ {{ productSummary.minPrice }}</p>
- <p class="title mt-20"><a :href="'./product-detail/'+productSummary.skuGroupId">{{ productSummary.skuGroupName }}</a></p>
- </div>
- </div>
- </template>
- <script setup>
- import VLazyImage from "v-lazy-image";
- import router from "../../../router";
- const props = defineProps({
- float: Boolean,
- showIcon: Boolean,
- productSummary: {
- type: Object
- }
- })
- function goPage(val){
- router.push({path: val})
- }
- </script>
- <style scoped lang="scss">
- .item {
- margin-bottom: 30px;
- width: 314px;
- height: 295px;
- border-radius: 4px;
- box-shadow: 0 0 10px 0 rgba(204, 204, 204, 1);
- overflow: hidden;
- background: white;
- &.float-item {
- display: inline-block;
- float: left;
- margin-left: 10px;
- margin-right: 10px;
- }
- .logo {
- display: block;
- width: 100%;
- height: 151px;
- transition: .3s;
- &:hover {
- transform: scale(1.05);
- }
- }
- &-content {
- padding: 22px 20px 35px;
- }
- .time {
- color: blue;
- font-size: 17px;
- text-align: center;
- }
- .title {
- color: rgba(86, 85, 85, 1);
- font-size: 17px;
- font-weight: bold;
- }
- }
- .overlay {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: left;
- align-items: left;
- background-color: rgba(0, 0, 0, 0.1); /* Adjust the background color and transparency as needed */
- }
- .overlay i {
- color: #fff; /* Adjust the icon color as needed */
- font-size: 24px; /* Adjust the icon size as needed */
- }
- </style>
|