fix: 代码 review 修改

This commit is contained in:
jason
2025-05-07 16:36:17 +08:00
parent 6a029ad7a0
commit 9f7761f832
4 changed files with 11 additions and 22 deletions

View File

@@ -1,6 +1,5 @@
<script lang="ts" setup>
import type { BpmCategoryApi } from '#/api/bpm/category';
import type { BpmModelApi } from '#/api/bpm/model';
import type { BpmModelApi, ModelCategoryInfo } from '#/api/bpm/model';
import { computed, ref, watchEffect } from 'vue';
@@ -31,7 +30,7 @@ import { DICT_TYPE } from '#/utils';
import CategoryRenameForm from '../../category/modules/rename-form.vue';
const props = defineProps<{
categoryInfo: BpmCategoryApi.ModelCategoryInfo;
categoryInfo: ModelCategoryInfo;
isCategorySorting: boolean;
}>();