fix: all table and anomali gangguan petugas

This commit is contained in:
kur0nek-o
2024-04-17 17:57:28 +07:00
parent 00ff360e5b
commit 781e4403aa
70 changed files with 403 additions and 50 deletions

View File

@@ -8,6 +8,7 @@
:allow-column-reordering="true"
class="max-h-[calc(100vh-140px)] mb-10"
:data-source="data"
v-if="loadingData == false"
:show-column-lines="true"
:show-row-lines="false"
:show-borders="true"
@@ -1083,7 +1084,8 @@ const shading = ref(true)
const showPane = ref(true)
const props = defineProps({
data: Array as () => any[],
filters: Object as () => any
filters: Object as () => any,
loadingData: Boolean
})
const emit = defineEmits(['update:loadingSubData'])
const filters = ref<any>(computed(() => props.filters))
@@ -1093,7 +1095,6 @@ const dataSelected = ref<any>(null)
const dataSubSelected = ref<any>(null)
const dialogDetail = ref(false)
const closedialogDetail = () => (dialogDetail.value = false)
const loadingData = ref(false)
const loadingSubData = ref(false)
const agreeToShowDialog = ref(false)
const reportMeta = ref<any>(computed(() => props.filters))