-
+
-
+
-
+
-
+
- data.periode = value" />
+ (data.periode = value)" />
-
+
- {
- data.group = value
- console.log('data.group', value)
- }" :radio-items="[{ id: 1, title: 'Tidak' }, { id: 2, title: 'Ya, Grupkan' }]" />
+ (data.groupBy = value.id === 2)"
+ :radio-items="[
+ { id: 1, title: 'Tidak' },
+ { id: 2, title: 'Ya, Grupkan' }
+ ]"
+ />
diff --git a/src/components/Form/FiltersType/Type6.vue b/src/components/Form/FiltersType/Type6.vue
index 800fc87..4bfdc21 100755
--- a/src/components/Form/FiltersType/Type6.vue
+++ b/src/components/Form/FiltersType/Type6.vue
@@ -16,7 +16,7 @@ import { onMounted, ref } from 'vue'
const emit = defineEmits(['update:filters'])
const uidPlaceholder = 'Semua Unit Induk Distribusi/Wilayah'
const up3Placeholder = 'Semua Unit Pelaksanaan Pelayanan Pelanggan'
-const poskoPlaceholder = 'Semua Unit Layanan Pelanggan'
+const poskoPlaceholder = 'Semua Posko'
const up3 = ref({ id: 0, name: up3Placeholder })
const uid = ref({ id: 0, name: uidPlaceholder })
const posko = ref({ id: 0, name: poskoPlaceholder })
diff --git a/src/components/Form/FiltersType/Type7.vue b/src/components/Form/FiltersType/Type7.vue
index d4f53e0..187548a 100755
--- a/src/components/Form/FiltersType/Type7.vue
+++ b/src/components/Form/FiltersType/Type7.vue
@@ -16,16 +16,16 @@ import { onMounted, ref, watch } from 'vue'
const emit = defineEmits(['update:filters'])
const uidPlaceholder = 'Semua Unit Induk Distribusi/Wilayah'
const up3Placeholder = 'Semua Unit Pelaksanaan Pelayanan Pelanggan'
-const poskoPlaceholder = 'Semua Unit Layanan Pelanggan'
+const poskoPlaceholder = 'Semua Posko'
const up3 = ref({ id: 0, name: up3Placeholder })
const uid = ref({ id: 0, name: uidPlaceholder })
const posko = ref({ id: 0, name: poskoPlaceholder })
-const totalMin = ref("1 Menit")
-const totalMax = ref("5 Menit")
+const totalMin = ref('1 Menit')
+const totalMax = ref('5 Menit')
-const setDataMin = (value: any) => totalMin.value = value
+const setDataMin = (value: any) => (totalMin.value = value)
const getDataMin = () => totalMin.value
-const setDataMax = (value: any) => totalMax.value = value
+const setDataMax = (value: any) => (totalMax.value = value)
const getDataMax = () => totalMax.value
const data = ref({
@@ -37,8 +37,6 @@ const data = ref({
maxTime: getDataMax().split(' ')[0]
})
-
-
const setUid = (value: any) => {
uid.value = value
selectedUid(value)
@@ -109,21 +107,35 @@ onMounted(() => {