diff --git a/src/modules/08_KPI/components/Tab/Topic/01_Indicator.vue b/src/modules/08_KPI/components/Tab/Topic/01_Indicator.vue index d31badf..f15ab3e 100644 --- a/src/modules/08_KPI/components/Tab/Topic/01_Indicator.vue +++ b/src/modules/08_KPI/components/Tab/Topic/01_Indicator.vue @@ -168,6 +168,19 @@ function onDelete(id: string) { }); } +const modalProgress = ref(false); +const modalProblem = ref(false); +const type = ref(""); +function openPopupProgress() { + modalProgress.value = true; + type.value = rows.value ? "plan" : rows.value ? "role" : "special"; +} + +function openPopupProblem() { + modalProblem.value = true; + type.value = rows.value ? "plan" : rows.value ? "role" : "special"; +} + watch( () => modal.value, () => { @@ -260,13 +273,7 @@ watch( {{ col.label }} - +