style(flowable): 优化流程相关代码的import顺序和代码结构

This commit is contained in:
2025-12-30 15:11:32 +08:00
parent 54cde91aac
commit d1670b79a0
2528 changed files with 7710 additions and 10794 deletions

View File

@@ -109,10 +109,11 @@
</template>
<script setup lang="ts">
import { ref, computed } from 'vue';
import {computed, ref} from 'vue';
import Filter from './Filter.vue';
import Table from './Table.vue';
import type { TableLayoutProps, TreeNodeData } from '../types/TableLayout.d';
import type {TableLayoutProps, TreeNodeData} from '../types/TableLayout.d';
import type {FilterExpose} from '../types/Filter.d';
defineOptions({
name: 'TableLayout',
@@ -154,7 +155,6 @@ const emit = defineEmits<{
}>();
const queryFormRef = ref<InstanceType<typeof import('element-plus').ElForm> | null>(null);
import type { FilterExpose } from '../types/Filter.d';
const queryFormComponentRef = ref<FilterExpose | null>(null);
const sideSearchKeyword = ref<string>('');
const treeRef = ref<InstanceType<typeof import('element-plus').ElTree> | null>(null);