implemented filters to modul gangguan

This commit is contained in:
kur0nek-o
2023-11-05 08:51:15 +07:00
parent b914081faa
commit 090712f45d
21 changed files with 192 additions and 10 deletions

View File

@@ -62,6 +62,7 @@
</template>
<script setup lang="ts">
import { useFiltersStore } from '@/stores/filters'
import { DxDataGrid } from 'devextreme-vue'
import { DxColumn, DxColumnFixing, DxExport, DxLoadPanel, DxPaging, DxScrolling, DxSearchPanel, DxSelection } from 'devextreme-vue/data-grid'
import { onMounted, ref } from 'vue'
@@ -140,6 +141,13 @@ const onSelectionChanged = ({ selectedRowsData }: any) => {
onMounted(() => {
createDummy()
const filters = useFiltersStore()
filters.setConfig({
type: 'type-1',
reportButton: true
})
})
</script>