Initial commit: 云印享后台管理系统

This commit is contained in:
2026-03-29 18:23:02 +08:00
commit f685a8aeed
23346 changed files with 2302962 additions and 0 deletions

31
node_modules/antd/es/modal/components/ConfirmOkBtn.js generated vendored Normal file
View File

@@ -0,0 +1,31 @@
"use client";
import React, { useContext } from 'react';
import ActionButton from '../../_util/ActionButton';
import { ModalContext } from '../context';
const ConfirmOkBtn = () => {
const {
autoFocusButton,
close,
isSilent,
okButtonProps,
rootPrefixCls,
okTextLocale,
okType,
onConfirm,
onOk
} = useContext(ModalContext);
return /*#__PURE__*/React.createElement(ActionButton, {
isSilent: isSilent,
type: okType || 'primary',
actionFn: onOk,
close: (...args) => {
close === null || close === void 0 ? void 0 : close.apply(void 0, args);
onConfirm === null || onConfirm === void 0 ? void 0 : onConfirm(true);
},
autoFocus: autoFocusButton === 'ok',
buttonProps: okButtonProps,
prefixCls: `${rootPrefixCls}-btn`
}, okTextLocale);
};
export default ConfirmOkBtn;