You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.1 KiB
53 lines
2.1 KiB
<template>
|
|
<div class="xl:w-screen-xl sm:flex xl:p-0 p-4 m-auto relative" v-infinite-scroll="load">
|
|
<el-row :gutter="24" class="flex">
|
|
<template v-for="(item,index) in list" :key="index">
|
|
<el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" class="mb-5 min-w-xs">
|
|
<el-card shadow="hover" :body-style="{ padding: '0px' }" class="hover:bg-gray-50 cursor-pointer" @click="openSpmUrl(`/item`, item, item.productId,true)">
|
|
<el-image :src="`${item.image}`" fit="contain" :lazy="true" class="w-full md:h-[150px] h-[199px] cursor-pointer" />
|
|
<div class="flex-1 px-4 py-5 sm:p-6 !p-4">
|
|
<div class="text-gray-700 dark:text-white text-base font-semibold flex flex-col gap-1.5">
|
|
<div class="flex-1 text-xl cursor-pointer">{{ item.title }}</div>
|
|
<div class="text-red-500">¥{{ item.price }} </div>
|
|
</div>
|
|
<div v-if="item.price && item.price > 0" class="flex items-center gap-1.5 py-2 text-gray-500 justify-between">
|
|
<div class="text-gray-500">{{ item.comments }}</div>
|
|
</div>
|
|
<div class="button-group flex justify-center mt-3">
|
|
<el-button type="primary" class="w-full" size="large" :icon="ElIconView" @click.stop="openSpmUrl(`/product/create`,item,item.productId,true)">立即开通</el-button>
|
|
<el-button size="large" class="w-full" @click.stop="openSpmUrl(`https://10241.websoft.top/system/user`,item, item.productId,true)">产品控制台</el-button>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
</template>
|
|
</el-row>
|
|
</div>
|
|
<div v-if="disabled" class="px-1 text-center text-gray-500 min-h-xs">
|
|
没有更多了
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {openSpmUrl} from "~/utils/common";
|
|
import dayjs from "dayjs";
|
|
import type {CmsProduct} from "~/api/cms/cmsProduct/model";
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
list?: CmsProduct[];
|
|
disabled?: boolean;
|
|
}>(),
|
|
{}
|
|
);
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'done'): void;
|
|
}>();
|
|
|
|
const load = () => {
|
|
if(!props.disabled){
|
|
emit('done')
|
|
}
|
|
}
|
|
</script>
|