Files
FiDA_Front/src/views/home/agent/components/ReportCard.vue

80 lines
1.6 KiB
Vue
Raw Normal View History

<template>
2026-03-16 11:43:19 +08:00
<div class="report-card" :class="{ 'is-url': isUrl }">
<div class="report-card-header">
2026-03-16 11:43:19 +08:00
<span v-if="!isUrl">{{ title }}</span>
<div v-else class="web-sources flex align-center">
<span>Web Sources</span>
<img src="@/assets/images/link.png" class="link-icon" />
</div>
</div>
<div class="report-card-content">
2026-03-16 14:11:01 +08:00
<span v-if="!isUrl">markdown.md</span>
2026-03-16 11:43:19 +08:00
<span v-else>Destination URL</span>
</div>
</div>
</template>
<script setup lang="ts">
2026-03-16 11:43:19 +08:00
// const props = defineProps<{
// title: string
// isUrl?: boolean
// }>()
const props = withDefaults(
defineProps<{
title?: string
content?: string
isUrl?: boolean
}>(),
{
isUrl: false,
title: '',
content: ''
}
)
</script>
<style lang="less" scoped>
.report-card {
2026-03-13 17:23:56 +08:00
cursor: pointer;
2026-03-16 11:43:19 +08:00
width: 100%;
margin: 2.4rem 0;
min-height: 11.2rem;
background: url('@/assets/images/report-card.png') no-repeat;
background-size: 100% 100%;
2026-03-16 11:43:19 +08:00
padding: 2.9rem;
overflow: hidden;
2026-03-16 11:43:19 +08:00
&.is-url {
background: url('@/assets/images/link-card.png') no-repeat;
background-size: 100% 100%;
}
2026-03-13 17:23:56 +08:00
// &:first-of-type{
// margin-top: 0;
// }
&-header {
font-family: 'Medium';
2026-03-16 11:43:19 +08:00
font-size: 1.6rem;
margin-bottom: 1.3rem;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
line-clamp: 3;
.web-sources {
column-gap: 0.8rem;
.link-icon {
width: 1.6rem;
height: 1.6rem;
}
}
}
&-content {
font-family: 'Regular';
font-weight: 300;
font-size: 1.6rem;
color: #7c7c7c;
}
}
</style>