|
@@ -1,11 +1,19 @@
|
|
import type { ModalOptionsEx, ModalOptionsPartial } from '/@/hooks/core/types';
|
|
import type { ModalOptionsEx, ModalOptionsPartial } from '/@/hooks/core/types';
|
|
|
|
+import type { ModalFunc, ModalFuncProps } from 'ant-design-vue/lib/modal/Modal';
|
|
|
|
|
|
import { Modal, message as Message, notification } from 'ant-design-vue';
|
|
import { Modal, message as Message, notification } from 'ant-design-vue';
|
|
import { InfoCircleFilled, CheckCircleFilled, CloseCircleFilled } from '@ant-design/icons-vue';
|
|
import { InfoCircleFilled, CheckCircleFilled, CloseCircleFilled } from '@ant-design/icons-vue';
|
|
-import { ModalOptions, ModalConfirm } from 'ant-design-vue/types/modal';
|
|
|
|
|
|
|
|
import { useSetting } from '/@/hooks/core/useSetting';
|
|
import { useSetting } from '/@/hooks/core/useSetting';
|
|
|
|
|
|
|
|
+interface ConfirmOptions {
|
|
|
|
+ info: ModalFunc;
|
|
|
|
+ success: ModalFunc;
|
|
|
|
+ error: ModalFunc;
|
|
|
|
+ warn: ModalFunc;
|
|
|
|
+ warning: ModalFunc;
|
|
|
|
+}
|
|
|
|
+
|
|
const { projectSetting } = useSetting();
|
|
const { projectSetting } = useSetting();
|
|
|
|
|
|
function getIcon(iconType: string) {
|
|
function getIcon(iconType: string) {
|
|
@@ -20,22 +28,22 @@ function getIcon(iconType: string) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
function renderContent({ content }: Pick<ModalOptionsEx, 'content'>) {
|
|
function renderContent({ content }: Pick<ModalOptionsEx, 'content'>) {
|
|
- return <div innerHTML={`<div>${content}</div>`}></div>;
|
|
|
|
|
|
+ return <div innerHTML={`<div>${content as string}</div>`}></div>;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
* @description: Create confirmation box
|
|
* @description: Create confirmation box
|
|
*/
|
|
*/
|
|
-function createConfirm(options: ModalOptionsEx): ModalConfirm {
|
|
|
|
|
|
+function createConfirm(options: ModalOptionsEx): ConfirmOptions {
|
|
const iconType = options.iconType || 'warning';
|
|
const iconType = options.iconType || 'warning';
|
|
Reflect.deleteProperty(options, 'iconType');
|
|
Reflect.deleteProperty(options, 'iconType');
|
|
- const opt: ModalOptions = {
|
|
|
|
|
|
+ const opt: ModalFuncProps = {
|
|
centered: true,
|
|
centered: true,
|
|
icon: getIcon(iconType),
|
|
icon: getIcon(iconType),
|
|
...projectSetting.messageSetting,
|
|
...projectSetting.messageSetting,
|
|
...options,
|
|
...options,
|
|
};
|
|
};
|
|
- return Modal.confirm(opt);
|
|
|
|
|
|
+ return Modal.confirm(opt) as any;
|
|
}
|
|
}
|
|
const baseOptions = {
|
|
const baseOptions = {
|
|
okText: '确定',
|
|
okText: '确定',
|