style: system views code style

This commit is contained in:
xingyu4j
2025-04-22 11:25:11 +08:00
parent 4e1d6812ff
commit da3fd5b718
84 changed files with 1200 additions and 624 deletions

View File

@@ -1,14 +1,17 @@
<script lang="ts" setup>
import { ref } from 'vue'
import { Page } from '@vben/common-ui'
import { DocAlert } from '#/components/doc-alert'
import TypeGrid from './modules/type-grid.vue'
import DataGrid from './modules/data-grid.vue'
import { ref } from 'vue';
const searchDictType = ref<string>() // 搜索的字典类型
import { Page } from '@vben/common-ui';
import { DocAlert } from '#/components/doc-alert';
import DataGrid from './modules/data-grid.vue';
import TypeGrid from './modules/type-grid.vue';
const searchDictType = ref<string>(); // 搜索的字典类型
function onDictTypeSelect(dictType: string) {
searchDictType.value = dictType
searchDictType.value = dictType;
}
</script>