Update file permissions for multiple files

This commit is contained in:
Eko Haryadi
2024-02-19 09:08:50 +07:00
parent 1750dd33df
commit 6c5e0fe763
239 changed files with 1433 additions and 928 deletions

15
src/components/Form/FiltersType/Type15.vue Normal file → Executable file
View File

@@ -2,6 +2,21 @@
import InputWithFilter from '../InputWithFilter.vue'
import DatePicker from '@/components/DatePicker.vue'
import InlineRadioGroup from '@/components/Form/InlineRadioGroup.vue'
import { ref } from 'vue';
const uidPlaceholder = 'Semua Unit Induk Distribusi/Wilayah';
const up3Placeholder = 'Semua Unit Pelaksanaan Pelayanan Pelanggan';
const ulpPlaceholder = 'Semua Unit Layanan Pelanggan';
const uppp = ref({ id: 0, name: up3Placeholder });
const uid = ref({ id: 0, name: uidPlaceholder });
const ulp = ref({ id: "", name: ulpPlaceholder });
const emit = defineEmits(['update:filters'])
const data = ref({
uid: uid.value,
up3: uppp.value,
posko: ulp.value,
periode: '',
group: 1
})
</script>
<template>