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.
94 lines
3.7 KiB
94 lines
3.7 KiB
<template>
|
|
<div class="text-center flex flex-col items-center py-12 z-100 relative">
|
|
<h2 class="text-3xl font-bold tracking-tight text-gray-900 dark:text-white sm:text-4xl lg:text-5xl">
|
|
{{ title }}
|
|
</h2>
|
|
<div class="sub-title">
|
|
<p class="text-gray-500 dark:text-gray-400 py-3">
|
|
{{ comments }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="xl:w-screen-xl sm:flex xl:p-0 p-4 m-auto relative">
|
|
<el-row :gutter="24" class="flex">
|
|
<template v-for="(item,index) in list" :key="index">
|
|
<el-col :span="6" :xs="24" 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="fit" :lazy="true" class="w-full md:h-[150px] h-[199px] cursor-pointer bg-gray-50"/>
|
|
<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 flex items-center">
|
|
{{ item.title }}
|
|
<el-tag v-if="item.tag == '1'" size="small" type="success" class="text-white ml-2" effect="dark">免费</el-tag>
|
|
<el-tag v-if="item.tag == '2'" size="small" type="success" class="text-white ml-2" effect="dark">开源</el-tag>
|
|
<el-tag v-if="item.tag == '3'" size="small" type="danger" class="text-white ml-2" effect="dark">付费</el-tag>
|
|
</div>
|
|
</div>
|
|
<div class="flex items-center gap-1.5 py-2 text-gray-500 justify-between">
|
|
<div class="text-gray-500 line-clamp-3">{{ item.comments }}</div>
|
|
</div>
|
|
<div class="button-group flex justify-between items-center mt-3">
|
|
<div class="flex items-end">
|
|
<span class="text-red-500 text-xl">¥{{ item.price }}</span>
|
|
<span v-if="item.durationMethod == 1" class="px-1 pb-1 text-xs text-gray-400">/年</span>
|
|
<span v-if="item.durationMethod == 2" class="px-1 pb-1 text-xs text-gray-400">/月</span>
|
|
<span v-if="item.durationMethod == 3" class="px-1 pb-1 text-xs text-gray-400">/日</span>
|
|
</div>
|
|
{{ item.chargingMethod }}
|
|
<el-button type="warning" @click.stop="openSpmUrl(`/product/create`,item,item.productId,true)">立即开通
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
</template>
|
|
<!-- <div class="more flex justify-center w-full"><el-button>查看更多</el-button></div>-->
|
|
</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 {useServerRequest} from "~/composables/useServerRequest";
|
|
import type {ApiResult, PageResult} from "~/api";
|
|
import type {Product, ProductParam} from "~/api/oa/product/model";
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
param?: ProductParam;
|
|
disabled?: boolean;
|
|
title?: string;
|
|
comments?: string;
|
|
fit?: any;
|
|
}>(),
|
|
{
|
|
title: '卡片标题',
|
|
comments: '卡片描述',
|
|
fit: 'cover'
|
|
}
|
|
);
|
|
|
|
const emit = defineEmits<{
|
|
(e: 'done'): void;
|
|
}>();
|
|
|
|
const list = ref<Product[]>([]);
|
|
|
|
// 请求数据
|
|
const reload = async () => {
|
|
const {data: response} = await useServerRequest<ApiResult<PageResult<Product>>>('/cms/cms-product/page', {
|
|
params: props.param
|
|
})
|
|
if (response.value?.data) {
|
|
if (response.value?.data.list) {
|
|
list.value = response.value?.data.list;
|
|
}
|
|
}
|
|
}
|
|
reload();
|
|
</script>
|