This commit is contained in:
quantulr
2023-10-29 18:37:44 +08:00
commit 373b3d9dff
1813 changed files with 131892 additions and 0 deletions

View File

@ -0,0 +1,115 @@
<template>
<div class="bg-white rounded-[8px]">
<div class="flex items-center h-[60px] border-b border-br ml-5 pr-5">
<div class="flex-1 flex min-w-0 mr-4 h-full">
<span
class="text-2xl truncate font-medium h-full border-b-2 border-tx-primary mt-[1px] flex items-center"
>
{{ header }}
</span>
</div>
<ElButton class="button" link v-if="link">
<NuxtLink :to="link" class="flex">
更多
<ElIcon><ArrowRight /></ElIcon>
</NuxtLink>
</ElButton>
</div>
<slot name="content" :data="data" v-if="data.length">
<div class="px-5 pb-5">
<template v-for="(item, index) in data" :key="item.id">
<slot name="item" :item="item" :index="index">
<InformationItems
:index="index"
:show-sort="showSort"
:id="item.id"
:title="item.title"
:desc="item.intro"
:click="item.visit"
:author="item.author"
:create-time="item.createTime"
:image="item.image"
:only-title="onlyTitle"
:image-size="imageSize"
:show-author="showAuthor"
:show-desc="showDesc"
:show-click="showClick"
:border="border"
:title-line="titleLine"
:show-time="showTime"
:source="source"
/>
</slot>
</template>
</div>
</slot>
<div v-else>
<el-empty
:image="empty_news"
description="暂无资讯"
:image-size="250"
/>
</div>
</div>
</template>
<script lang="ts" setup>
import { ElButton, ElIcon, ElEmpty } from 'element-plus'
import empty_news from '@/assets/images/empty_news.png'
import { ArrowRight } from '@element-plus/icons-vue'
import { PropType } from 'vue'
defineProps({
header: {
type: String,
default: ''
},
link: {
type: String,
default: ''
},
data: {
type: Array as PropType<any[]>,
default: () => []
},
source: {
type: String,
default: 'default'
},
onlyTitle: {
type: Boolean,
default: true
},
titleLine: {
type: Number,
default: 1
},
border: {
type: Boolean,
default: true
},
imageSize: {
type: String,
default: 'default'
},
showAuthor: {
type: Boolean,
default: true
},
showDesc: {
type: Boolean,
default: true
},
showClick: {
type: Boolean,
default: true
},
showTime: {
type: Boolean,
default: true
},
showSort: {
type: Boolean,
default: true
}
})
</script>
<style lang="scss" scoped></style>

View File

@ -0,0 +1,168 @@
<template>
<NuxtLink :to="`/information/detail/${id}`">
<div
v-if="onlyTitle"
class="before:w-[6px] mt-4 before:h-[6px] before:bg-primary before:block flex items-center before:rounded-[6px] before:mr-2.5 before:flex-none"
>
<slot name="title" :title="title">
<span class="line-clamp-1 flex-1 font-medium">{{ title }}</span>
</slot>
<span class="text-tx-secondary ml-4" v-if="showTime">
{{ createTime }}
</span>
</div>
<div
v-else
:class="{
'border-b border-br pb-4': border,
'flex pt-4 items-center': !isHorizontal
}"
>
<div class="flex relative">
<ElImage
v-if="image"
class="flex-none"
:class="{
'mr-4': !isHorizontal
}"
:src="image"
fit="cover"
:style="getImageStyle"
/>
</div>
<div
class="flex-1"
:class="{
'p-2': isHorizontal
}"
>
<slot name="title" :title="title">
<div
class="text-lg font-medium"
:class="`line-clamp-${titleLine}`"
>
{{ title }}
</div>
</slot>
<div
v-if="showDesc && desc"
class="text-tx-regular line-clamp-2 mt-4"
>
{{ desc }}
</div>
<div
v-if="showAuthor || showTime || showClick"
class="mt-5 text-tx-secondary flex items-center flex-wrap"
>
<span v-if="showAuthor && author">
{{ author }}&nbsp;|&nbsp;
</span>
<span class="mr-5" v-if="showTime">{{ createTime }}</span>
<div v-if="showClick" class="flex items-center">
<ElIcon>
<View />
</ElIcon>
<span>&nbsp;{{ click }}人浏览</span>
</div>
</div>
</div>
</div>
</NuxtLink>
</template>
<script lang="ts" setup>
import { ElImage, ElIcon } from 'element-plus'
import { View } from '@element-plus/icons-vue'
const props = defineProps({
index: {
type: Number
},
id: {
type: Number
},
title: {
type: String
},
desc: {
type: String
},
image: {
type: String
},
author: {
type: String
},
click: {
type: Number
},
createTime: {
type: String
},
onlyTitle: {
type: Boolean,
default: true
},
isHorizontal: {
type: Boolean,
default: false
},
titleLine: {
type: Number,
default: 1
},
border: {
type: Boolean,
default: true
},
source: {
type: String,
default: 'default'
},
imageSize: {
type: String,
default: 'default'
},
showAuthor: {
type: Boolean,
default: true
},
showDesc: {
type: Boolean,
default: true
},
showClick: {
type: Boolean,
default: true
},
showTime: {
type: Boolean,
default: true
},
showSort: {
type: Boolean,
default: true
}
})
const getImageStyle = computed(() => {
switch (props.imageSize) {
case 'default':
return {
width: '180px',
height: '135px'
}
case 'mini':
return {
width: '120px',
height: '90px'
}
case 'large':
return {
width: '260px',
height: '195px'
}
}
})
</script>
<style lang="scss" scoped></style>