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

@@ -13,7 +13,7 @@
</template>
<script setup>
import { createTable } from "@/api/tool/gen";
import {createTable} from "@/api/tool/gen";
const visible = ref(false);
const content = ref("");

View File

@@ -127,8 +127,8 @@
</template>
<script setup name="GenEdit">
import { getGenTable, updateGenTable } from "@/api/tool/gen";
import { optionselect as getDictOptionselect } from "@/api/system/dict/type";
import {getGenTable, updateGenTable} from "@/api/tool/gen";
import {optionselect as getDictOptionselect} from "@/api/system/dict/type";
import basicInfoForm from "./basicInfoForm";
import genInfoForm from "./genInfoForm";

View File

@@ -233,7 +233,7 @@
</template>
<script setup>
import { listMenu } from "@/api/system/menu";
import {listMenu} from "@/api/system/menu";
const subColumns = ref([]);
const menuOptions = ref([]);

View File

@@ -49,7 +49,7 @@
</template>
<script setup>
import { listDbTable, importTable } from "@/api/tool/gen";
import {importTable, listDbTable} from "@/api/tool/gen";
const total = ref(0);
const visible = ref(false);

View File

@@ -161,7 +161,7 @@
</template>
<script setup name="Gen">
import { listTable, previewTable, delTable, genCode, synchDb } from "@/api/tool/gen";
import {delTable, genCode, listTable, previewTable, synchDb} from "@/api/tool/gen";
import router from "@/router";
import importTable from "./importTable";
import createTable from "./createTable";