* переписал функции прототипов в сервисы

* оптимизация доставки контента до клиента
* переписал запросы выборок
* убрал из подсчета переведенных
* добавил сохранение метрикам для вывода в дашборд
This commit is contained in:
brusnitsyn
2026-02-04 17:05:13 +09:00
parent 9ee33bc517
commit eab78a0291
16 changed files with 1644 additions and 737 deletions

View File

@@ -2,9 +2,28 @@
import AppLayout from "../../Layouts/AppLayout.vue";
import ReportForm from "./Components/ReportForm.vue";
import {useReportStore} from "../../Stores/report.js";
import {computed, onMounted} from "vue";
import {computed, onMounted, watch} from "vue";
import {useAuthStore} from "../../Stores/auth.js";
const props = defineProps({
department: {
type: Object,
default: {}
},
report: {
type: Object,
default: {}
},
metrikaItems: {
type: Array,
default: []
},
dates: {
type: Object,
default: {}
}
})
const reportStore = useReportStore()
const authStore = useAuthStore()
@@ -15,7 +34,24 @@ onMounted(() => {
reportStore.reportInfo.userId = userId
reportStore.getReportInfo()
reportStore.reportInfo = props
reportStore.reportForm.metrika_item_3 = props.department.recipientCount
reportStore.reportForm.metrika_item_7 = props.department.extractCount
reportStore.reportForm.metrika_item_8 = props.department.currentCount
reportStore.reportForm.metrika_item_9 = props.department.deadCount
reportStore.reportForm.metrika_item_10 = props.department.surgicalCount[1]
reportStore.reportForm.metrika_item_11 = props.department.surgicalCount[0]
reportStore.unwantedEvents = props.report.unwantedEvents
reportStore.timestampCurrentRange = [
props.dates.startAt,
props.dates.endAt,
]
// reportStore.getReportInfo()
})
// reportStore.getReportInfo()
@@ -26,6 +62,28 @@ const mode = computed(() => {
return 'fillable'
})
watch(() => props, (newProps) => {
reportStore.reportInfo = newProps
reportStore.reportForm.metrika_item_3 = newProps.department.recipientCount
reportStore.reportForm.metrika_item_7 = newProps.department.extractCount
reportStore.reportForm.metrika_item_8 = newProps.department.currentCount
reportStore.reportForm.metrika_item_9 = newProps.department.deadCount
reportStore.reportForm.metrika_item_10 = newProps.department.surgicalCount[1]
reportStore.reportForm.metrika_item_11 = newProps.department.surgicalCount[0]
reportStore.unwantedEvents = newProps.report.unwantedEvents
reportStore.timestampCurrentRange = [
newProps.dates.startAt,
newProps.dates.endAt,
]
}, {
deep: true, // важно для глубокого отслеживания
immediate: true // выполнить сразу при создании
})
</script>
<template>