fix(api): 接口导入

This commit is contained in:
baiqi 2023-08-23 16:57:21 +08:00 committed by 刘瑞斌
parent 6f996e991b
commit 0c85b89c0d
3 changed files with 2 additions and 3 deletions

View File

@ -33,7 +33,6 @@ export default function useModal() {
return {
openModal: (options: ModalOptions) => {
const okHandlerLoading = ref<boolean>(false);
// error 使用 warning的感叹号图标
Modal[options.type]({
// 默认设置按钮属性也可通过options传入覆盖
okButtonProps: {

View File

@ -163,7 +163,7 @@
import MsTableMoreAction from '@/components/pure/ms-table-more-action/index.vue';
import type { ActionsItem } from '@/components/pure/ms-table-more-action/types';
import { getPluginList, deletePluginReq, updatePlugin, getScriptDetail } from '@/api/modules/setting/pluginManger';
import { getSystemOrgOption } from '@/api/modules/setting/system/organizationAndProject';
import { getSystemOrgOption } from '@/api/modules/setting/organizationAndProject';
import MsButton from '@/components/pure/ms-button/index.vue';
import UploadModel from './uploadModel.vue';
import UpdatePluginModal from './updatePluginModal.vue';

View File

@ -346,7 +346,7 @@
import { downloadStringFile, sleep } from '@/utils';
import { scrollIntoView } from '@/utils/dom';
import { addPool, getPoolInfo, updatePoolInfo } from '@/api/modules/setting/resourcePool';
import { getSystemOrgOption } from '@/api/modules/setting/system/organizationAndProject';
import { getSystemOrgOption } from '@/api/modules/setting/organizationAndProject';
import useAppStore from '@/store/modules/app';
import type { MsBatchFormInstance, FormItemModel } from '@/components/business/ms-batch-form/types';