From 6027418f0399f2f0674efdd21545e5550a445dec Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:52:42 +0000 Subject: [PATCH 1/3] Initial plan From 9abcf5c172e1ffb397eeb6ec01fb56a7651937e0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:03:26 +0000 Subject: [PATCH 2/3] Fix: Correct import path case sensitivity issues Co-authored-by: CoderBoyBoy <11583532+CoderBoyBoy@users.noreply.github.com> --- core/App.vue | 2 +- core/component/apisModel/requestBody.vue | 2 +- core/component/apisModel/responses.vue | 2 +- core/component/basic/attrItemList.vue | 4 ++-- core/component/basic/attrItemListView.vue | 4 ++-- core/component/basic/exampleBasic.vue | 2 +- core/component/basic/responseSchema.vue | 2 +- core/component/requestBody/index.vue | 2 +- core/component/response/index.vue | 2 +- core/extensions/formView/index.vue | 2 +- core/security/preView/index.vue | 2 +- core/server/preView/index.vue | 2 +- core/siderMenu/index.vue | 14 +++++++------- 13 files changed, 21 insertions(+), 21 deletions(-) diff --git a/core/App.vue b/core/App.vue index 6370264..c55a0f9 100644 --- a/core/App.vue +++ b/core/App.vue @@ -35,7 +35,7 @@ const Comp = defineAsyncComponent(() => import('./component/index.vue')); const ApiModel = defineAsyncComponent(() => import('./component/apisModel/index.vue')); const PathInfo = defineAsyncComponent(() => import('./pathInfo/index.vue')); -const DocInfoPreview = defineAsyncComponent(() => import('./docInfo/preview/index.vue')); +const DocInfoPreview = defineAsyncComponent(() => import('./docInfo/preView/index.vue')); const ExternalDocPreview = defineAsyncComponent(() => import('./externalDoc/preView/index.vue')); const ServerPreview = defineAsyncComponent(() => import('./server/preView/index.vue')); const SecurityPreview = defineAsyncComponent(() => import('./security/preView/index.vue')); diff --git a/core/component/apisModel/requestBody.vue b/core/component/apisModel/requestBody.vue index c3817bb..a57ec09 100644 --- a/core/component/apisModel/requestBody.vue +++ b/core/component/apisModel/requestBody.vue @@ -4,7 +4,7 @@ import { Button, TabPane, Tabs, Select } from 'ant-design-vue'; import { NotificationOutlined } from '@ant-design/icons-vue'; import { CONTENT_TYPE } from '../basic/utils'; import BodyContentTypeTab from '../basic/bodyContentTypeTab.vue'; -import Dropdown from '@/common/dropdown/index.vue'; +import Dropdown from '@/common/Dropdown/index.vue'; const descRef = ref(); const EasyMd = defineAsyncComponent(() => import('@/common/easyMd/index.vue')); diff --git a/core/component/apisModel/responses.vue b/core/component/apisModel/responses.vue index 5f30438..0b43ace 100644 --- a/core/component/apisModel/responses.vue +++ b/core/component/apisModel/responses.vue @@ -3,7 +3,7 @@ import { onMounted, ref, watch, Ref } from 'vue'; import { Button, TabPane, Tabs, Input } from 'ant-design-vue'; // import ResponseSchema from '../basic/responseSchema.vue'; import {httpStatus} from './PropTypes'; -import Dropdown from '@/common/dropdown/index.vue'; +import Dropdown from '@/common/Dropdown/index.vue'; import responseTabPane from './responseTabPane.vue'; interface Props { diff --git a/core/component/basic/attrItemList.vue b/core/component/basic/attrItemList.vue index 13be4f6..2d72dab 100644 --- a/core/component/basic/attrItemList.vue +++ b/core/component/basic/attrItemList.vue @@ -52,8 +52,8 @@