Добавил уведомление о создании отчета

This commit is contained in:
brusnitsyn
2026-06-23 17:28:52 +09:00
parent 8e6bbc5f91
commit 6942b0c091
9 changed files with 121 additions and 42 deletions

View File

@@ -1,5 +1,5 @@
<script setup>
import { NText } from 'naive-ui'
import { NText, NEl } from 'naive-ui'
import { TbPlus } from 'vue-icons-plus/tb'
defineProps({
@@ -8,7 +8,7 @@ defineProps({
</script>
<template>
<div class="preset-card">
<NEl class="preset-card">
<div v-if="preset.key === 'blank'" class="preset-blank">
<TbPlus :size="26" />
</div>
@@ -17,7 +17,7 @@ defineProps({
</div>
<NText class="preset-title">{{ preset.label }}</NText>
<NText depth="3" class="preset-desc">{{ preset.description }}</NText>
</div>
</NEl>
</template>
<style scoped>